diff options
Diffstat (limited to 'pcr/mednafen-wip')
-rwxr-xr-x | pcr/mednafen-wip/PKGBUILD | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/pcr/mednafen-wip/PKGBUILD b/pcr/mednafen-wip/PKGBUILD new file mode 100755 index 000000000..2abee7f46 --- /dev/null +++ b/pcr/mednafen-wip/PKGBUILD @@ -0,0 +1,57 @@ +# Maintainer: Hans-Kristian Arntzen <maister@archlinux.us> +# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# Contributor: kagan <juanynie@mi.madritel.es> +# Maintainer (Parabola): Márcio Silva <coadde@lavabit.com> +# Maintainer (Parabola): André Silva <emulatorman@lavabit.com> + +pkgbase=mednafen +pkgname=mednafen-wip +pkgver=0.9.26 +_pkgver=422 +pkgrel=1 +pkgdesc='A command-line multi-system gaming emulator, WIP version' +url="http://$pkgbase.sourceforge.net/" +license=( + GPL +) +arch=( + i686 + x86_64 + mips64el +) +depends=( + jack2 + 'libcdio>=0.83' + sdl-libre +) +optdepends=( + 'libgl: needed for opengl support' + 'glu: needed for opengl support' +) +makedepends=( + mesa + glu +) +provides=( + $pkgbase +) +conflicts=( + $pkgbase +) +source=( + 'http://forum.fobby.net/index.php?t=getfile&id='$_pkgver'&' +) +sha1sums=( + e43c2b04b513af1db35933a2819d2660e7106600 +) + +build() { + cd $srcdir/$pkgbase + ./configure --prefix=/usr + make +} + +package() { + cd $srcdir/$pkgbase + make DESTDIR=$pkgdir install +} |