diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2008-12-01 23:48:10 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2008-12-01 23:48:10 (GMT) |
commit | 575bd0829fce6f7582aefca086e1894b63812ef8 (patch) | |
tree | 1b66d798131ebd448034b30a2d7d6111aabf4c52 /abs/core-testing/fceu/PKGBUILD | |
parent | 466412d4bdf5beb0645eced2d064df5e15f9b76b (diff) | |
download | linhes_pkgbuild-575bd0829fce6f7582aefca086e1894b63812ef8.zip linhes_pkgbuild-575bd0829fce6f7582aefca086e1894b63812ef8.tar.gz linhes_pkgbuild-575bd0829fce6f7582aefca086e1894b63812ef8.tar.bz2 |
Emulators and deps.
Signed-off-by: Cecil Hugh Watson <knoppmyth@gmail.com>
Diffstat (limited to 'abs/core-testing/fceu/PKGBUILD')
-rwxr-xr-x | abs/core-testing/fceu/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/abs/core-testing/fceu/PKGBUILD b/abs/core-testing/fceu/PKGBUILD new file mode 100755 index 0000000..cdae29a --- /dev/null +++ b/abs/core-testing/fceu/PKGBUILD @@ -0,0 +1,24 @@ +# Maintainer: Eric Belanger <belanger@astro.umontreal.ca> +# Contributor: Jo Christian Bergskås <jcberg@gmail.com> + +pkgname=fceu +pkgver=0.98.15 +pkgrel=1 +pkgdesc="FCE Ultra is a fast and ultra-compatible NES/Famicom emulator with SDL, OpenGL and SVGALIB support." +arch=('i686' 'x86_64') +url="http://fceultra.sourceforge.net" +license="GPL" +options=('docs') +depends=('sdl' 'zlib') +source=(ftp://ftp.knoppmyth.net/R6/sources/$pkgname-$pkgver-src.tar.bz2) +md5sums=('bfe9aa7f91c19fa17bb6e5424dc5901b') + +build() { + cd $startdir/src/fceu + ./configure --prefix=/usr --with-opengl --build=i686-linux-gnu + make || return 1 + make DESTDIR=$startdir/pkg install + install -D -m644 $startdir/src/fceu/Documentation/fceu-sdl.6 $startdir/pkg/usr/man/man6/fceu.6 + install -d $startdir/pkg/usr/share/doc/fceu-doc + cp -r $startdir/src/fceu/Documentation/* $startdir/pkg/usr/share/doc/fceu-doc +} |