summaryrefslogtreecommitdiff
path: root/~emulatorman/mednafen-wip/PKGBUILD
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-02-22 17:06:20 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-02-22 17:06:20 +0100
commit47d70348352503e92ba694a6a683f629eaa18215 (patch)
tree7fb6f5ec75596b795dee52cfa35e3ef00a047cfb /~emulatorman/mednafen-wip/PKGBUILD
parentc0bcbcf4015ba2388cb0f0bd418e5242f9613b43 (diff)
parent1f55cedf5ea357497d2a98eb2be78d8dab4a9665 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community-testing/hostapd/PKGBUILD community/discid/PKGBUILD community/dumb/PKGBUILD community/dynamite/PKGBUILD community/echat/PKGBUILD community/fbdump/PKGBUILD community/fldiff/PKGBUILD community/flightgear/PKGBUILD community/fonteditfs/PKGBUILD community/freehdl/PKGBUILD community/unclutter/PKGBUILD community/unpaper/PKGBUILD community/wmii/PKGBUILD community/xkeycaps/PKGBUILD community/xl2tpd/PKGBUILD community/xmmsctrl/PKGBUILD extra/gnutls/PKGBUILD extra/inkscape/PKGBUILD extra/ntp/PKGBUILD extra/transmission/PKGBUILD multilib/lib32-libpng/PKGBUILD testing/libreoffice/PKGBUILD
Diffstat (limited to '~emulatorman/mednafen-wip/PKGBUILD')
-rwxr-xr-x~emulatorman/mednafen-wip/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/~emulatorman/mednafen-wip/PKGBUILD b/~emulatorman/mednafen-wip/PKGBUILD
new file mode 100755
index 000000000..93893684e
--- /dev/null
+++ b/~emulatorman/mednafen-wip/PKGBUILD
@@ -0,0 +1,34 @@
+# 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.19
+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=345&' 'build.patch')
+md5sums=('64be12196aa02828539af677b0e2a66c'
+ 'aac8957fa5274f00feed6a462fa8b7ad')
+
+build()
+{
+ cd $srcdir/mednafen
+ patch -p1 < $srcdir/build.patch
+ ./configure --prefix=/usr
+ make
+}
+
+package()
+{
+ cd $srcdir/mednafen
+ make DESTDIR=$pkgdir install
+}
+