2024-07-23 08:20:18 -04:00
|
|
|
# Description: Library providing freedesktop.org XDG specs implementations for Qt
|
|
|
|
# URL: https://github.com/lxqt/libqtxdg
|
|
|
|
# Maintainer: Jay Lanagan, j at lngn dot net
|
2024-07-24 07:54:25 -04:00
|
|
|
# Depends on: xorg-libsm xorg-libxcb
|
2024-07-23 08:20:18 -04:00
|
|
|
|
|
|
|
name=libqtxdg
|
|
|
|
version=4.0.0
|
|
|
|
release=1
|
|
|
|
|
|
|
|
source=(https://github.com/lxqt/libqtxdg/archive/4.0.0/libqtxdg-4.0.0.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
cmake "$SRC/$name-$version" \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-Wno-dev
|
|
|
|
|
|
|
|
make
|
|
|
|
|
|
|
|
|
|
|
|
make DESTDIR="$PKG" install
|
|
|
|
}
|