updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / somax / PKGBUILD
blobb6d3e9f28657ccd9ea19cc771fa18d3a21fdd467
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 # Contributor: Paulo Freire <paulofreire gmail com>
7 pkgname=somax
8 pkgver=20071018
9 pkgrel=1
10 pkgdesc="GUI for soma"
11 arch=(i686)
12 url="http://www.somasuite.org/"
13 license=('GPL')
14 groups=()
15 depends=('vte' 'openssl' 'soma')
16 makedepends=()
17 provides=()
18 conflicts=()
19 replaces=()
20 backup=()
21 options=(!libtool)
22 install=
23 source=(http://www.somasuite.org/src/snapshots/$pkgname-$pkgver.tar.gz)
24 noextract=()
25 md5sums=('6197969fd0ca33eab9e30585aa68b0bb') #generate with 'makepkg -g'
27 build() {
28   cd $startdir/src/$pkgname-1.4.dev
29   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-gtksourceview
30   make || return 1
31   make DESTDIR=$startdir/pkg install
35 # vim:set ts=2 sw=2 et: