blob: 6d6b7355c58bb365205f93354d9d025b710922dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
SECTION = "x11/games"
PR = "r3"
LICENSE = "snes9x"
DEPENDS = "virtual/libx11 zlib"
#DEPENDS = "libxxf86dga libxxf86vm"
DEPENDS_append_i686 = " nasm-native"
RDEPENDS_epia = "kernel-module-joydev"
SRC_URI = "http://files.ipherswipsite.com/snes9x/snes9x-1.5-src.tar.bz2"
# file://makefile.patch;patch=1;pnum=2 \
# file://private.patch;patch=1;pnum=0"
S = "${WORKDIR}/snes9x-1.5-src"
inherit autotools
export OECFLAGS="${CFLAGS}"
export OELDFLAGS="${LDFLAGS}"
EXTRA_OECONF = "--without-extensions"
do_install() {
install -d ${D}${bindir}
install snes9x ${D}${bindir}
}
|