23 lines
500 B
Plaintext
Raw Permalink Normal View History

2024-07-23 08:20:18 -04:00
# 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: qt6-tools git
name=lxqt-build-tools
2024-11-08 05:51:05 -05:00
version=2.1.0
2024-07-23 08:20:18 -04:00
release=1
2024-11-08 05:51:05 -05:00
source=(https://github.com/lxqt/$name/archive/$version/$name-$version.tar.gz)
2024-07-23 08:20:18 -04:00
build() {
mkdir -p build
cd build
cmake "$SRC/$name-$version" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-Wno-dev
make
make DESTDIR="$PKG" install
}