summaryrefslogtreecommitdiff
path: root/community/nestopia/PKGBUILD
blob: c499709c73d59fde0b56e44a99f9fb8a41eeec1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# $Id: PKGBUILD 94780 2013-07-30 10:05:36Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Tiago Pierezan Camargo <tcamargo@gmail.com>
# Contributor: robb_force <robb_force@holybuffalo.net>

pkgname=nestopia
pkgver=1.45
pkgrel=1
pkgdesc='An NES emulator featuring cycle exact emulation, a ridiculous number of mappers, and lots of custom sound chips.'
url='http://0ldsk00l.ca/nestopia.html'
license=('GPL')
arch=('i686' 'x86_64' 'mips64el')
depends=('sdl' 'alsa-lib' 'gtk3' 'glu' 'libarchive')
makedepends=('unzip' 'mesa')
source=("$pkgname-$pkgver.tar.gz::https://github.com/rdanbrook/nestopia/tarball/$pkgver"
	"build-fix.patch")
md5sums=('f34aa327011af7c149ec679db5b53362'
         '4a852d8e484c2fe214377ec18a68356f')

build() {
  cd ${srcdir}/rdanbrook-nestopia-*
  patch -p1 <$srcdir/build-fix.patch
  export LDFLAGS=-lX11
  make PREFIX=/usr -j1
}

package() {
  cd ${srcdir}/rdanbrook-nestopia-*
  mkdir -p $pkgdir/usr/{bin,share/nestopia}
  make install PREFIX=$pkgdir/usr
}