commit d563bb0e03686f1e2e62dce26c4b3d53bb935432 parent f2bb222cfe7547ae9fc961cf7a93a43c28974dba Author: Shokara Kou <kou@13f0.net> Date: Fri, 13 May 2022 12:33:22 -0400 add mednafen Diffstat:
| A | mednafen/.footprint | | | 3 | +++ |
| A | mednafen/.md5sum | | | 1 | + |
| A | mednafen/Pkgfile | | | 20 | ++++++++++++++++++++ |
3 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/mednafen/.footprint b/mednafen/.footprint @@ -0,0 +1,3 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/mednafen diff --git a/mednafen/.md5sum b/mednafen/.md5sum @@ -0,0 +1 @@ +61947d5a387ae59ff5e2839438fd61d6 mednafen-1.29.0.tar.xz diff --git a/mednafen/Pkgfile b/mednafen/Pkgfile @@ -0,0 +1,20 @@ +# Description: multi-system game console emulator +# URL: https://mednafen.github.io/ +# Maintainer: Shokara Kou, kou at 13f0 dot net +# Depends on: alsa-lib libsdl2 flac libsndfile zlib + +name=mednafen +version=1.29.0 +release=1 +source=(https://mednafen.github.io/releases/files/$name-$version.tar.xz) + +build() { + cd $name + + ./configure \ + --prefix=/usr \ + --disable-nls + + make + make DESTDIR=$PKG install +}