Date: Sunday, April 16, 2023 @ 13:10:19
Author: yan12125
Revision: 1446522
archrelease: copy trunk to community-testing-x86_64
Added:
lxqt-archiver/repos/community-testing-x86_64/
lxqt-archiver/repos/community-testing-x86_64/PKGBUILD
(from rev 1446521, lxqt-archiver/trunk/PKGBUILD)
lxqt-archiver/repos/community-testing-x86_64/keys/
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Copied: lxqt-archiver/repos/community-testing-x86_64/PKGBUILD (from rev
1446521, lxqt-archiver/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-04-16 13:10:19 UTC (rev 1446522)
@@ -0,0 +1,36 @@
+# Maintainer: Chih-Hsuan Yen <[email protected]>
+
+pkgname=lxqt-archiver
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="A simple & lightweight desktop-agnostic Qt file archiver"
+arch=("x86_64")
+groups=("lxqt")
+url="https://github.com/lxqt/$pkgname"
+license=("GPL2")
+depends=('libfm-qt' 'qt5-x11extras' 'glib2' 'json-glib' 'libfm-qt.so')
+makedepends=('cmake' 'qt5-tools' 'lxqt-build-tools')
+optdepends=(
+ 'libarchive: for handling rpm files'
+)
+source=("https://github.com/lxqt/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
+sha256sums=('29d3195026185f88107b849bfd546d4534042621b3c28d3e9a23106e5097ce24'
+ 'SKIP')
+validpgpkeys=(
+ "19DFDF3A579BD509DBB572D8BE793007AD22DF7E" # Pedram Pourang
<[email protected]>
+)
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBEXECDIR=lib
+
+ make -C build
+}
+
+package() {
+ cd build
+
+ make DESTDIR="$pkgdir" install
+}