Date: Saturday, March 4, 2023 @ 18:08:38
Author: arojas
Revision: 1412348
archrelease: copy trunk to community-x86_64
Added:
mauikit-terminal/repos/
mauikit-terminal/repos/community-x86_64/
mauikit-terminal/repos/community-x86_64/PKGBUILD
(from rev 1412347, mauikit-terminal/trunk/PKGBUILD)
----------+
PKGBUILD | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
Copied: mauikit-terminal/repos/community-x86_64/PKGBUILD (from rev 1412347,
mauikit-terminal/trunk/PKGBUILD)
===================================================================
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2023-03-04 18:08:38 UTC (rev 1412348)
@@ -0,0 +1,22 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=mauikit-terminal
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Terminal support components for Maui applications'
+url='https://mauikit.org/'
+arch=(x86_64)
+license=(LGPL)
+depends=(mauikit)
+makedepends=(extra-cmake-modules)
+source=(https://download.kde.org/stable/maui/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz)
+sha256sums=('88886545478b36efa9ca6461e68af1c30f73f6b7b8c4313091f479279465cde4')
+
+build() {
+ cmake -B build -S $pkgname-$pkgver
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}