blob: 8634c7f89bfb70ce7d9602c6a6fb81e5ad706630 (
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
27
28
29
30
31
32
|
DESCRIPTION = "A cross-platform REXX interpreter"
SECTION = "devel/rexx"
LICENSE = "GPL"
HOMEPAGE = "http://regina-rexx.sf.net"
DEPENDS = "regina-rexx-native"
SRC_URI = "${SOURCEFORGE_MIRROR}/regina-rexx/regina33.zip \
file://use-proper-host-tools.patch;patch=1"
S = "${WORKDIR}"
inherit autotools
PARALLEL_MAKE = ""
# need to use configure script built by ancient autotools
do_configure() {
gnu-configize
oe_runconf
}
do_compile() {
oe_runmake STAGING_BINDIR_NATIVE="${STAGING_BINDIR_NATIVE}"
}
do_install() {
oe_runmake install bindir="${D}${bindir}" libdir="${D}${libdir}" includedir="${D}${includedir}" \
sharedir="${D}${datadir}" mandir="${D}${mandir}" sysconfdir="${D}${sysconfdir}" \
STAGING_BINDIR_NATIVE="${STAGING_BINDIR_NATIVE}"
}
FILES_${PN} += "${datadir}"
|