Date: Thursday, March 2, 2023 @ 07:28:33
Author: arojas
Revision: 1406270
archrelease: copy trunk to community-staging-x86_64
Added:
maui-clip/repos/community-staging-x86_64/
maui-clip/repos/community-staging-x86_64/PKGBUILD
(from rev 1406269, maui-clip/trunk/PKGBUILD)
----------+
PKGBUILD | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
Copied: maui-clip/repos/community-staging-x86_64/PKGBUILD (from rev 1406269,
maui-clip/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-03-02 07:28:33 UTC (rev 1406270)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=maui-clip
+_pkgname=clip
+pkgver=2.2.2
+pkgrel=2
+pkgdesc='Video player and video collection manager'
+url='https://mauikit.org/'
+arch=(x86_64)
+license=(GPL3)
+depends=(mauikit-filebrowsing taglib ffmpeg)
+makedepends=(extra-cmake-modules)
+groups=(maui)
+source=(https://download.kde.org/stable/maui/$_pkgname/$pkgver/$_pkgname-$pkgver.tar.xz)
+sha256sums=('ce47b9b3c79861eef11d99cffc98ea4a41ddcc281784f8b07827859b69e969b6')
+
+build() {
+ cmake -B build -S $_pkgname-$pkgver
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}