updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / editje / PKGBUILD
blob57f1c2683d3f737504b6c62b1004222126769a10
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: Julien Noblet <julien.noblet@gmail.com>
7 pkgname=editje
8 pkgver=0.1.b
9 pkgrel=1
10 pkgdesc=""
11 arch=(any)
12 url="http://freebox-elixir.googlecode.com/"
13 license=('unknown')
14 groups=()
15 depends=()
16 makedepends=()
17 optdepends=()
18 provides=()
19 conflicts=()
20 replaces=()
21 backup=()
22 options=()
23 install=
24 source=(http://freebox-elixir.googlecode.com/files/$pkgname-$pkgver.tar.bz2)
25 noextract=()
26 md5sums=('e0edf242613aedb62604ce9ae6a9a4d2')
28 build() {
29   cd "$srcdir/$pkgname-$pkgver"
31   ./configure --prefix=/usr
32   make || return 1
33   make DESTDIR="$pkgdir/" install
36 # vim:set ts=2 sw=2 et: