1b9988e1156af48bf5bd240d1d36537ed59e3ef7
[vuplus_openembedded] / hugs / hugs_hugs98-Nov2003.oe
1 DEPENDS = "readline"
2 SRC_URI = "http://cvs.haskell.org/Hugs/downloads/Nov2003/${PV}.tar.gz"
3 LICENSE = "BSD"
4
5 S = "${WORKDIR}/${PV}/src/unix"
6
7 inherit autotools
8
9 # disable STRIP as the generated Makefile falsely call arm-linux-strip
10 # on compiling which leads to abortion of the compile
11 # we strip manually anyway so disabling it here is 'ok'
12 EXTRA_OECONF = "--enable-debug --disable-ffi STRIP=true"
13
14 do_configure() {
15     oe_runconf
16 }
17
18 do_compile() {
19     cd ../ && oe_runmake
20 }
21
22 do_install() {
23     cd ../ && autotools_do_install
24 }