mirror of
https://github.com/mac-a-r0ni/lxqt.git
synced 2025-01-15 19:22:20 +01:00
2eb9db8827
initial import
27 lines
578 B
Plaintext
27 lines
578 B
Plaintext
# Description: TCommon base library for LXQt components
|
|
# URL: https://github.com/lxqt/liblxqt
|
|
# Maintainer: Jay Lanagan, j at lngn dot net
|
|
# Depends on: kwindowsystem lxqt-build-tools polkit-qt-1
|
|
|
|
name=liblxqt
|
|
version=2.1.0
|
|
release=1
|
|
|
|
source=(https://github.com/lxqt/$name/releases/download/$version/$name-$version.tar.xz)
|
|
|
|
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
|
|
|
|
rm -rf $PKG/usr/share/lxqt/translations
|
|
}
|