summaryrefslogtreecommitdiff
path: root/mednafen
diff options
context:
space:
mode:
authorShokara Kou <kou@13f0.net>2022-05-13 12:33:22 -0400
committerShokara Kou <kou@13f0.net>2022-12-10 16:12:53 -0500
commitd563bb0e03686f1e2e62dce26c4b3d53bb935432 (patch)
treea41660ddb61915215fdf496a90c4ebfb79307e89 /mednafen
parentf2bb222cfe7547ae9fc961cf7a93a43c28974dba (diff)
add mednafen
Diffstat (limited to 'mednafen')
-rw-r--r--mednafen/.footprint3
-rw-r--r--mednafen/.md5sum1
-rw-r--r--mednafen/Pkgfile20
3 files changed, 24 insertions, 0 deletions
diff --git a/mednafen/.footprint b/mednafen/.footprint
new file mode 100644
index 0000000..f5ac1f7
--- /dev/null
+++ b/mednafen/.footprint
@@ -0,0 +1,3 @@
1drwxr-xr-x root/root usr/
2drwxr-xr-x root/root usr/bin/
3-rwxr-xr-x root/root usr/bin/mednafen
diff --git a/mednafen/.md5sum b/mednafen/.md5sum
new file mode 100644
index 0000000..7947c96
--- /dev/null
+++ b/mednafen/.md5sum
@@ -0,0 +1 @@
61947d5a387ae59ff5e2839438fd61d6 mednafen-1.29.0.tar.xz
diff --git a/mednafen/Pkgfile b/mednafen/Pkgfile
new file mode 100644
index 0000000..d7592e7
--- /dev/null
+++ b/mednafen/Pkgfile
@@ -0,0 +1,20 @@
1# Description: multi-system game console emulator
2# URL: https://mednafen.github.io/
3# Maintainer: Shokara Kou, kou at 13f0 dot net
4# Depends on: alsa-lib libsdl2 flac libsndfile zlib
5
6name=mednafen
7version=1.29.0
8release=1
9source=(https://mednafen.github.io/releases/files/$name-$version.tar.xz)
10
11build() {
12 cd $name
13
14 ./configure \
15 --prefix=/usr \
16 --disable-nls
17
18 make
19 make DESTDIR=$PKG install
20}