updated on Sat Jan 21 20:03:50 UTC 2012
[aur-mirror.git] / genders / PKGBUILD
blobe1700ac9112193ba1174b7beb9d10298cb4538f0
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: snafu <regflx@web.de>
7 pkgname=genders
8 pkgver=1.14
9 pkgrel=1
10 pkgdesc="Static cluster configuration datatbase used for cluster configuration management."
11 arch=(x86_64 i686)
12 url="http://sourceforge.net/projects/genders"
13 license=('GPL')
14 groups=()
15 depends=()
16 makedepends=()
17 optdepends=()
18 provides=()
19 conflicts=()
20 replaces=()
21 backup=()
22 options=()
23 install=
24 changelog=
25 source=(http://sourceforge.net/projects/genders/files/genders/$pkgver-$pkgrel/$pkgname-$pkgver.tar.gz)
26 noextract=()
27 md5sums=('8d645f331fd8636b2d8e830c65d06255')
29 build() {
30   cd "$srcdir/$pkgname-$pkgver"
32   ./configure --prefix=/usr
33   make
36 package() {
37   cd "$srcdir/$pkgname-$pkgver"
39   make DESTDIR="$pkgdir/" install
42 # vim:set ts=2 sw=2 et: