blob: 22b3554e315819a5da235d6b307542367270d1be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Maintainer (AUR): Jörg Schuck <joerg_schuck@web.de>
# Contributor (AUR): Juergen Hoetzel <juergen@archlinux.org>
pkgname=gnucash-docs
pkgver=3.0
pkgrel=1
pkgdesc="GnuCash documentation package"
arch=('any')
url="http://www.gnucash.org/docs.phtml"
license=('GPL')
depends=('yelp')
makedepends=('rarian' 'libxslt')
source=("gnucash-docs-$pkgver.tar.gz::http://sourceforge.net/projects/gnucash/files/gnucash-docs/$pkgver/gnucash-docs-$pkgver.tar.gz/download")
sha1sums=('01ec63f4cc4805ee708a04f51c6978c132afafd9')
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:
|