mirror of
https://github.com/mac-a-r0ni/lxqt.git
synced 2025-01-15 19:22:20 +01:00
2eb9db8827
initial import
24 lines
515 B
Plaintext
24 lines
515 B
Plaintext
# Description: libqtxdg user tools
|
|
# URL: https://github.com/lxqt/qtxdg-tools
|
|
# Maintainer: Jay Lanagan, j at lngn dot net
|
|
# Depends on: libqtxdg lxqt-build-tools
|
|
|
|
name=qtxdg-tools
|
|
version=4.1.0
|
|
release=1
|
|
|
|
source=(https://github.com/lxqt/$name/releases/download/$version/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
|
|
cmake -B build -S "$SRC/$name-$version" \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-Wno-dev
|
|
|
|
cmake --build build
|
|
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|