Date: Wednesday, January 1, 2014 @ 15:09:37 Author: juergen Revision: 203019
New package: Fixes FS#28260 Added: gnucash-docs/ gnucash-docs/repos/ gnucash-docs/trunk/ gnucash-docs/trunk/PKGBUILD ----------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) Added: gnucash-docs/trunk/PKGBUILD =================================================================== --- gnucash-docs/trunk/PKGBUILD (rev 0) +++ gnucash-docs/trunk/PKGBUILD 2014-01-01 14:09:37 UTC (rev 203019) @@ -0,0 +1,32 @@ +# Maintainer: Juergen Hoetzel <[email protected]> +pkgname=gnucash-docs +pkgver=2.6.0 +pkgrel=1 +pkgdesc="GnuCash documentation package" +arch=('any') +url="http://www.gnucash.org/docs.phtml" +license=('GPL') +makedepends=('rarian') +source=("http://sourceforge.net/projects/gnucash/files/gnucash-docs/2.6.0/gnucash-docs-2.6.0.tar.gz/download") +md5sums=('d8392952cbb9ff51c132e68a6c209131') + +build() { + cd $pkgname-$pkgver + + ./configure --prefix=/usr + make +} + +check() { + cd $pkgname-$pkgver + + make -k check +} + +package() { + cd $pkgname-$pkgver + + make DESTDIR="$pkgdir/" install +} + +# vim:set ts=2 sw=2 et:
