mirror of
https://github.com/mac-a-r0ni/lxqt.git
synced 2025-01-15 19:22:20 +01:00
24 lines
543 B
Plaintext
24 lines
543 B
Plaintext
# Description: Various packaging tools and scripts for LXQt applications
|
|
# URL: https://github.com/lxqt/lxqt-build-tools
|
|
# Maintainer: Jay Lanagan, j at lngn dot net
|
|
# Depends on: qt5 git
|
|
|
|
name=lxqt-build-tools-qt5
|
|
version=0.13.0
|
|
release=1
|
|
|
|
source=(https://github.com/lxqt/lxqt-build-tools/releases/download/$version/lxqt-build-tools-$version.tar.xz)
|
|
|
|
build() {
|
|
mkdir -p build
|
|
cd build
|
|
cmake "$SRC/lxqt-build-tools-$version" \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-Wno-dev
|
|
|
|
make
|
|
|
|
make DESTDIR="$PKG" install
|
|
}
|