blob: f837ec908ad9043f5d046fbbc644498894433cab (
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
33
34
35
36
37
38
39
40
41
42
|
SECTION = "libs"
DEPENDS = ""
PR = "r1"
SRC_URI = "${SOURCEFORGE_MIRROR}/openjade/OpenSP-${PV}.tar.gz \
file://m4.patch;patch=1 \
file://attributevalue.patch;patch=1 \
file://rangmap-fix.patch;patch=1"
S = "${WORKDIR}/OpenSP-${PV}"
LICENSE = "MIT"
inherit autotools native
EXTRA_OECONF = "\
--enable-default-catalog=${sysconfdir}/sgml/catalog \
--enable-default-search-path=${datadir}/sgml \
"
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/opensp-${PV}"
PACKAGES = ""
do_configure () {
gnu-configize
oe_runconf
}
do_stage () {
oe_libinstall -a -so -C lib libosp ${STAGING_LIBDIR}
install -d ${STAGING_INCDIR}/OpenSP
install -m 0644 ${S}/include/*.h ${STAGING_INCDIR}/OpenSP/
install -m 0644 ${S}/include/*.cxx ${STAGING_INCDIR}/OpenSP/
install -m 0644 config.h ${STAGING_INCDIR}/OpenSP/config.h
# Installs all the tools and symlink with another common name to each.
install -d ${STAGING_BINDIR_NATIVE}
for tool in nsgmls sgmlnorm spam spcat spent sx
do
echo installing $tool to ${STAGING_BINDIR_NATIVE}
install -m 0755 $tool/.libs/o$tool ${STAGING_BINDIR_NATIVE}
ln -sf o$tool ${STAGING_BINDIR_NATIVE}/$tool
done
}
|