Date: Tuesday, November 15, 2022 @ 17:31:03
Author: arojas
Revision: 1348944
archrelease: copy trunk to community-staging-x86_64
Added:
qt6ct/repos/community-staging-x86_64/
qt6ct/repos/community-staging-x86_64/PKGBUILD
(from rev 1348943, qt6ct/trunk/PKGBUILD)
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: qt6ct/repos/community-staging-x86_64/PKGBUILD (from rev 1348943,
qt6ct/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-11-15 17:31:03 UTC (rev 1348944)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Martchus <[email protected]>
+
+pkgname=qt6ct
+pkgver=0.7
+pkgrel=2
+pkgdesc='Qt 6 Configuration Utility'
+arch=(x86_64)
+url='https://github.com/trialuser02/qt6ct'
+license=(BSD)
+depends=(qt6-svg)
+makedepends=(cmake qt6-tools)
+source=(https://github.com/trialuser02/qt6ct/releases/download/$pkgver/qt6ct-$pkgver.tar.xz)
+sha256sums=('75a7cc173ee9e24c51d5238d616ea7333ecd3d4934c09d70a623059db667002b')
+options=(debug)
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+ install -Dm644 $pkgname-$pkgver/COPYING
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}