Add a ton of missing package DESCRIPTION fields.
[vuplus_openembedded] / frotz / frotz_2.42.oe
1 DEPENDS = "virtual/libc ncurses"
2 RDEPENDS = "libc6 ncurses5"
3 DESCRIPTION = "Frotz is an interpreter for Infocom games \
4 and other Z-machine games."
5
6 SRC_URI = http://www.cs.csubak.edu/~dgriffi/proj/frotz/files/frotz-${PV}.tar.gz
7
8 do_configure() {
9     patch -N ${s}/ux_init.c < remove_root_restriction.patch || :
10     rm -f ${SourceTree}/frotz.conf
11 }
12
13
14 EXTRA_OEMAKE=CC="${CC}" INCL="${CFLAGS}" LIB="${LDFLAGS}" PREFIX=${prefix} CONFIG_DIR=${sysconfdir}
15 do_compile() {
16     oe_runmake frotz
17     sed 's/^[a-z]/#&/' frotz.conf-big > frotz.conf;
18 }
19
20 do_install() {
21     oe_runmake PREFIX=${D}${prefix} MAN_PREFIX=${D}${mandir} install
22 }