Date: Wednesday, February 22, 2023 @ 08:18:09
Author: arojas
Revision: 1403375
archrelease: copy trunk to community-x86_64
Added:
mauikit-documents/repos/
mauikit-documents/repos/community-x86_64/
mauikit-documents/repos/community-x86_64/PKGBUILD
(from rev 1403374, mauikit-documents/trunk/PKGBUILD)
----------+
PKGBUILD | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
Copied: mauikit-documents/repos/community-x86_64/PKGBUILD (from rev 1403374,
mauikit-documents/trunk/PKGBUILD)
===================================================================
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2023-02-22 08:18:09 UTC (rev 1403375)
@@ -0,0 +1,22 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=mauikit-documents
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='MauiKit QtQuick plugins for text editing'
+url='https://mauikit.org/'
+arch=(x86_64)
+license=(LGPL)
+depends=(mauikit kio kfilemetadata)
+makedepends=(extra-cmake-modules poppler-qt5)
+source=(https://download.kde.org/stable/maui/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz)
+sha256sums=('8a082ca9aed0bebe519a82a0f5420d3b6e6e60e536acf46c5f7b84e0ce52d1b6')
+
+build() {
+ cmake -B build -S $pkgname-$pkgver
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}