updated on Tue Jan 17 20:03:13 UTC 2012
[aur-mirror.git] / openspc / PKGBUILD
blob2e5ca1a840d246f1f6a4447fbf25acdbeb5f3a25
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: Your Name <youremail@domain.com>
7 pkgname=openspc
8 pkgver=0.3.1
9 pkgrel=1
10 pkgdesc="SPC player"
11 arch=("i686")
12 url="http://membres.lycos.fr/pixels/OpenSPC.html"
13 license=('GPL')
14 depends=("esd")
15 install=
16 source=(http://membres.lycos.fr/pixels/OpenSPC-$pkgver.tar.gz)
17 noextract=()
18 md5sums=('f39d88694eb31341420572872b1743c8')
20 build() {
21   cd "$srcdir/OpenSPC-$pkgver"
23   ./configure --prefix=/usr
24   make || return 1
25   make DESTDIR="$pkgdir/" install
28 # vim:set ts=2 sw=2 et: