diff options
author | André Fabian Silva Delgado <andre@pc-01.localdomain> | 2012-04-04 17:34:13 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <andre@pc-01.localdomain> | 2012-04-04 17:34:13 -0300 |
commit | f284e73794eb278af9923cbbe9ccd54154e43e59 (patch) | |
tree | 10407ea3d027e1def0307516007c26f3363de1ef /social | |
parent | 213a7edc6dd50b4f60f32b92530dfb4825d000ce (diff) |
social/mednafen-wip
Diffstat (limited to 'social')
-rwxr-xr-x | social/mednafen-wip/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/social/mednafen-wip/PKGBUILD b/social/mednafen-wip/PKGBUILD new file mode 100755 index 000000000..a405d2ceb --- /dev/null +++ b/social/mednafen-wip/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: Hans-Kristian Arntzen <maister@archlinux.us> +# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# Contributor: kagan <juanynie@mi.madritel.es> +# Contributor (Parabola): André Silva <andre.paulista@adinet.com.uy> + +pkgname=mednafen-wip +pkgver=0.9.21 +pkgrel=1 +pkgdesc="A command-line multi-system gaming emulator, WIP version" +url="http://mednafen.sourceforge.net/" +license=(GPL) +arch=('i686' 'x86_64') +depends=('libcdio>=0.82' 'libsamplerate' 'libogg' 'libvorbis' 'sdl' 'sdl_net' 'libsndfile' 'zlib') +makedepends=('pkgconfig' 'mesa') +conflicts=('mednafen') +provides=('mednafen') +source=('http://forum.fobby.net/index.php?t=getfile&id=358&') +sha1sums=('983c349ca991190363b713ac8abf7ae78b081a21') + +build() +{ + cd $srcdir/mednafen + ./configure --prefix=/usr + make +} + +package() +{ + cd $srcdir/mednafen + make DESTDIR=$pkgdir install +} |