mirror of
https://github.com/mac-a-r0ni/lxqt.git
synced 2025-01-15 19:22:20 +01:00
2eb9db8827
initial import
30 lines
729 B
Plaintext
30 lines
729 B
Plaintext
# Description: The LXQt desktop panel.
|
|
# URL: https://github.com/lxqt/lxqt-panel
|
|
# Maintainer: Jay Lanagan, j at lngn dot net
|
|
# Depends on: layer-shell-qt libdbusmenu-lxqt libqtxdg lxqt-menu-data lxqt-globalkeys menu-cache solid libstatgrab libsysstat lm_sensors
|
|
|
|
name=lxqt-panel
|
|
version=2.1.1
|
|
release=1
|
|
|
|
source=(https://github.com/lxqt/$name/releases/download/$version/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
|
|
cd "$SRC/$name-$version"
|
|
|
|
mkdir -p build
|
|
cd build
|
|
cmake "$SRC/$name-$version" \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-Wno-dev
|
|
make
|
|
|
|
make DESTDIR="$PKG" install
|
|
|
|
rm -rf $PKG/usr/share/lxqt/translations
|
|
rm $PKG/usr/share/lxqt/panel/qeyes-types/README
|
|
}
|