Date: Friday, April 16, 2021 @ 14:07:28
Author: yan12125
Revision: 919448
archrelease: copy trunk to community-testing-any
Added:
lxqt-themes/repos/community-testing-any/
lxqt-themes/repos/community-testing-any/PKGBUILD
(from rev 919447, lxqt-themes/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: lxqt-themes/repos/community-testing-any/PKGBUILD (from rev 919447,
lxqt-themes/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD (rev 0)
+++ community-testing-any/PKGBUILD 2021-04-16 14:07:28 UTC (rev 919448)
@@ -0,0 +1,39 @@
+# Maintainer: Jerome Leclanche <[email protected]>
+# Co-Maintainer: Chih-Hsuan Yen <[email protected]>
+
+pkgname=lxqt-themes
+pkgver=0.17.0
+pkgrel=1
+pkgdesc="LXQt themes, graphics and icons."
+arch=("any")
+groups=("lxqt")
+url="https://github.com/lxqt/$pkgname"
+license=("LGPL2.1")
+depends=("hicolor-icon-theme")
+makedepends=("lxqt-build-tools")
+replaces=("lxqt-common")
+source=(
+
"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"
+
"https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc"
+)
+sha256sums=('3ff1960f593ffb591ebf8ce48a54953f30e6f7fac4880ad6eb1dbe9ecd67bb4e'
+ '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
+}