#Packager: George Vlahavas pkgname=lxqt-notificationd pkgver=1.2.0 pkgrel=1gv source=("https://github.com/lxqt/lxqt-notificationd/releases/download/$pkgver/lxqt-notificationd-$pkgver.tar.xz") docs=("readme.md" "install" "copying" "changelog" "authors" "news" "todo") url=https://lxqt-project.org slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "lxqt-notificationd (The LXQt notification daemon)" "lxqt-notificationd is LXQt's implementation of a daemon according to" "the Desktop Notifications Specification. This specification defines a" "way to display notifications in pop-up windows on desktops." "Notifications like this are e. g. frequently used by chat or mail" "clients to inform about incoming messages, by media players to" "indicate the beginning of another track but also by the desktop" "environment itself to indicate volume changes or similar." ) build() { cd $startdir/src/$pkgname-$pkgver mkdir -p build cd build cmake \ -DCMAKE_C_FLAGS:STRING="$CFLAGS" \ -DCMAKE_CXX_FLAGS:STRING="$CXXFLAGS" \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=/usr/lib${LIBDIRSUFFIX} \ -DCMAKE_BUILD_TYPE=Release .. make -j $numjobs || return 1 make install DESTDIR=$startdir/pkg cd .. }