updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / supergameboy / PKGBUILD
blob59fb878ec55a6ab41230b5ed3686610cbf6b5353
1 # Contributor: [vEX] <niechift.dot.vex.at.gmail.dot.com>
2 pkgname=supergameboy
3 pkgver=0.015
4 pkgrel=1
5 pkgdesc="bsnes library for Super Game Boy support."
6 arch=('i686' 'x86_64')
7 url="http://byuu.org/bsnes/"
8 license=('GPL2')
9 depends=('gcc-libs')
10 makedepends=('pkgconfig')
11 source=("http://byuu.org/files/${pkgname}_v015.tar.bz2")
12 md5sums=('77758d388360d48e8619a6fb7c8a54ea')
14 build() {
15   cd "${srcdir}/${pkgname}"
17   # Conform to the Arch Linux packaging standards
18   sed -e 's|\(libsupergameboy.*\) $(DESTDIR)$(prefix)/lib|\1 $(DESTDIR)$(prefix)/lib/\1|' \
19       -i "${srcdir}/${pkgname}/Makefile" || return 1
21   # Build and install it
22   make || return 1
23   make install DESTDIR=$pkgdir prefix=/usr || return 1
24   chmod 644 "${pkgdir}/usr/lib/lib${pkgname}.a" || return 1