Date: Thursday, November 5, 2020 @ 15:11:57
Author: yan12125
Revision: 743192
archrelease: copy trunk to community-staging-x86_64
Added:
lxqt-notificationd/repos/community-staging-x86_64/
lxqt-notificationd/repos/community-staging-x86_64/PKGBUILD
(from rev 743191, lxqt-notificationd/trunk/PKGBUILD)
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: lxqt-notificationd/repos/community-staging-x86_64/PKGBUILD (from rev
743191, lxqt-notificationd/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-11-05 15:11:57 UTC (rev 743192)
@@ -0,0 +1,38 @@
+# Maintainer: Jerome Leclanche <[email protected]>
+# Co-Maintainer: Chih-Hsuan Yen <[email protected]>
+
+pkgname=lxqt-notificationd
+pkgver=0.16.0
+pkgrel=1
+pkgdesc="LXQt notification daemon and library."
+arch=("x86_64")
+groups=("lxqt")
+url="https://github.com/lxqt/$pkgname"
+license=("LGPL2.1")
+depends=("qt5-base" "liblxqt" "kwindowsystem" "libQt5Xdg.so")
+makedepends=("cmake" "lxqt-build-tools")
+provides=("notification-daemon")
+source=(
+
"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc}
+)
+sha512sums=('127f1c044babb0c7a640d862fc9f30947b06ef37b702a75bc72a87f82f9aff15b32e29272993eb9d888e1c8db93e81cec8d07be515c769c560ecce4b439bb2f3'
+ 'SKIP')
+validpgpkeys=(
+ "169704C6FB490C6892C7F23C37E0AF1FDA48F373" # Jerome Leclanche
<[email protected]>
+ "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3" # Alf Gaida
<[email protected]>
+ "19DFDF3A579BD509DBB572D8BE793007AD22DF7E" # Pedram Pourang
<[email protected]>
+)
+
+
+build() {
+ mkdir -p build
+ cd build
+ cmake "$srcdir/$pkgname-$pkgver" \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}