blob: 045b86021c760567370d545096a890942ebd0979 (
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
26
|
LICENSE = "GPL"
DESCRIPTION = "Frotz is an interpreter for Infocom games and other Z-machine games."
HOMEPAGE = "http://www.cs.csubak.edu/~dgriffi/proj/frotz/"
SECTION = "console/games"
DEPENDS = "ncurses"
SRC_URI = "http://www.cs.csubak.edu/~dgriffi/proj/frotz/files/frotz-${PV}.tar.gz \
file://Makefile-${PV}.patch;apply=yes \
file://remove_root_restriction.patch;apply=yes "
do_configure() {
rm -f ${SourceTree}/frotz.conf
}
EXTRA_OEMAKE = "CC='${CC}' INCL='${CFLAGS}' LIB='${LDFLAGS}' PREFIX=${prefix} CONFIG_DIR=${sysconfdir}"
do_compile() {
oe_runmake frotz
}
do_install() {
oe_runmake PREFIX=${D}${prefix} MAN_PREFIX=${D}${mandir} install
}
SRC_URI[md5sum] = "efe51879e012b92bb8d5f4a82e982677"
SRC_URI[sha256sum] = "f831eae9182e4a1407a34cb1098a4f5ad5ad6c6632e34eed734b9601a06a764b"
|