Date: Thursday, March 16, 2023 @ 22:10:29
Author: alex19ep
Revision: 1421213
archrelease: copy trunk to community-testing-any
Added:
mate-user-guide/repos/community-testing-any/
mate-user-guide/repos/community-testing-any/PKGBUILD
(from rev 1421212, mate-user-guide/trunk/PKGBUILD)
----------+
PKGBUILD | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
Copied: mate-user-guide/repos/community-testing-any/PKGBUILD (from rev 1421212,
mate-user-guide/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD (rev 0)
+++ community-testing-any/PKGBUILD 2023-03-16 22:10:29 UTC (rev 1421213)
@@ -0,0 +1,28 @@
+# Maintainer: Alexander Epaneshnikov <[email protected]>
+# Contributor: Brad Fanella <[email protected]>
+# Contributor: Martin Wimpress <[email protected]>
+
+pkgname=mate-user-guide
+pkgver=1.27.0
+pkgrel=1
+pkgdesc="MATE User Guide"
+groups=('mate')
+url="https://mate-desktop.org"
+arch=('any')
+license=('FDL')
+depends=('yelp' 'gettext')
+makedepends=('itstool')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
+sha256sums=('b1a1f995341a386a4a6913b66c3262e9303cce42f9529a7f7c80b8940f5b229f')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr
+ make
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}