Date: Saturday, April 25, 2020 @ 03:26:53
Author: yan12125
Revision: 619782
archrelease: copy trunk to community-staging-x86_64
Added:
obconf-qt/repos/community-staging-x86_64/
obconf-qt/repos/community-staging-x86_64/PKGBUILD
(from rev 619781, obconf-qt/trunk/PKGBUILD)
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: obconf-qt/repos/community-staging-x86_64/PKGBUILD (from rev 619781,
obconf-qt/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-04-25 03:26:53 UTC (rev 619782)
@@ -0,0 +1,38 @@
+# Maintainer: Jerome Leclanche <[email protected]>
+# Maintainer: Chih-Hsuan Yen <[email protected]>
+
+pkgname=obconf-qt
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="Openbox configuration tool. Qt port of ObConf"
+arch=("x86_64")
+groups=("lxqt")
+url="https://lxqt.org"
+license=("GPL2")
+depends=("hicolor-icon-theme" "openbox" "qt5-x11extras")
+makedepends=("lxqt-build-tools")
+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"
+)
+sha512sums=('a723dcd3b409afc7b16572d293cbf0543e00a7177a9819e2374632c00c765de74896429f6e19a54fcee83e20ce2e0876f857447c374db2f4f925dec92be71279'
+ '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
+}