Date: Saturday, April 15, 2023 @ 08:20:33
Author: arojas
Revision: 1446143
archrelease: copy trunk to community-testing-any
Added:
gnucash-docs/repos/community-testing-any/
gnucash-docs/repos/community-testing-any/PKGBUILD
(from rev 1446142, gnucash-docs/trunk/PKGBUILD)
----------+
PKGBUILD | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
Copied: gnucash-docs/repos/community-testing-any/PKGBUILD (from rev 1446142,
gnucash-docs/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD (rev 0)
+++ community-testing-any/PKGBUILD 2023-04-15 08:20:33 UTC (rev 1446143)
@@ -0,0 +1,35 @@
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Maintainer: Jaroslav Lichtblau <[email protected]>
+# Contributor: Juergen Hoetzel <[email protected]>
+
+pkgname=gnucash-docs
+pkgver=5.0
+pkgrel=1
+pkgdesc='Documentation for GnuCash'
+arch=('any')
+url='https://gnucash.org/docs.phtml'
+license=('FDL')
+depends=('yelp')
+makedepends=('cmake')
+source=(https://downloads.sourceforge.net/gnucash/$pkgname-$pkgver.tar.gz)
+sha256sums=('02a1d6d0d8c61aae47b1200af482967ed16322a41f31dd8cf3a6679e7159edb1')
+
+prepare() {
+ cd $pkgname-$pkgver
+ mkdir build
+}
+
+
+build() {
+ cd $pkgname-$pkgver/build
+
+ cmake \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ ..
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver/build
+ make DESTDIR="${pkgdir}" install
+}