2024-07-23 08:20:18 -04:00
|
|
|
# Description: LXQt notification daemon and library
|
|
|
|
# URL: https://github.com/lxqt/lxqt-notificationd
|
|
|
|
# Maintainer: Jay Lanagan, j at lngn dot net
|
2024-09-17 16:06:51 -04:00
|
|
|
# Depends on: layer-shell-qt libqtxdg liblxqt
|
2024-07-23 08:20:18 -04:00
|
|
|
|
|
|
|
name=lxqt-notificationd
|
2024-12-03 02:49:53 -05:00
|
|
|
version=2.1.1
|
2024-07-23 08:20:18 -04:00
|
|
|
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_BUILD_TYPE=Release \
|
|
|
|
-Wno-dev
|
|
|
|
make
|
|
|
|
|
|
|
|
make DESTDIR="$PKG" install
|
|
|
|
|
|
|
|
rm -rf $PKG/usr/share/lxqt
|
|
|
|
}
|