Merge direwolf.itg.ti.com:/home/kergoth/coding/projects/user/oe-metadata/paths
[vuplus_openembedded] / frotz / frotz_2.42.oe
1 DEPENDS = virtual/libc ncurses
2 RDEPENDS = libc6 ncurses5
3
4 SRC_URI = http://www.cs.csubak.edu/~dgriffi/proj/frotz/files/frotz-${PV}.tar.gz
5
6 do_configure() {
7     patch -N ${s}/ux_init.c < remove_root_restriction.patch || :
8     rm -f ${SourceTree}/frotz.conf
9 }
10
11
12 EXTRA_OEMAKE=CC="${CC}" INCL="${CFLAGS}" LIB="${LDFLAGS}" PREFIX=${prefix} CONFIG_DIR=${sysconfdir}
13 do_compile() {
14     oe_runmake frotz
15     sed 's/^[a-z]/#&/' frotz.conf-big > frotz.conf;
16 }
17
18 do_install() {
19     oe_runmake PREFIX=${D}${prefix} MAN_PREFIX=${D}${mandir} install
20 }