updated on Sat Jan 14 00:11:12 UTC 2012
[aur-mirror.git] / libopenspc / PKGBUILD
blobce84fab4b695d1decdbf499edce2f7be310e3152
1 # Contributor: Martin Häger <martin.haeger@gmail.com>
2 pkgname=libopenspc
3 pkgver=0.3.99a
4 pkgrel=1
5 pkgdesc="Provides a library that allows for the emulated playback of SPC files, which are SNES audio files."
6 arch=('i686')
7 url="http://web.archive.org/web/20040930224420/web.umr.edu/~bmartin"
8 license=('LGPL' 'custom')
9 depends=('zlib')
10 makedepends=('nasm')
11 options=(!libtool)
12 source=("http://ftp.debian.org/debian/pool/main/libo/libopenspc/${pkgname}_$pkgver.orig.tar.gz")
13 md5sums=('8f94764ebdf4fedcd75a1d54412378a1')
15 build() {
16   cd "$srcdir/$pkgname-$pkgver.orig"
17   
18   autoreconf -iv
19   ./configure --prefix=/usr
20   make || return 1
21   make DESTDIR="$pkgdir/" install
22   install -D -m644 libopenspc/LICENSE "$pkgdir/usr/share/licenses/libopenspc/LICENSE"
25 # vim:set ts=2 sw=2 et: