Date: Thursday, September 29, 2022 @ 20:49:41
Author: arojas
Revision: 1317086
archrelease: copy trunk to community-testing-x86_64
Added:
qt6ct/repos/community-testing-x86_64/
qt6ct/repos/community-testing-x86_64/PKGBUILD
(from rev 1317085, qt6ct/trunk/PKGBUILD)
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: qt6ct/repos/community-testing-x86_64/PKGBUILD (from rev 1317085,
qt6ct/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2022-09-29 20:49:41 UTC (rev 1317086)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Martchus <[email protected]>
+
+pkgname=qt6ct
+pkgver=0.6
+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=('b44b22fc2301c36ae4d20adfdd6f624484ea753f6f061ce1d511a102a83a6cc3')
+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
+}