blob: 0d70b4165daab3b7c57f3c666f5931013161571b (
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
|
DESCRIPTION = "Hubbub is an HTML5 compliant parsing library"
HOMEPAGE = "http://www.netsurf-browser.org/projects/hubbub/"
SECTION = "libs"
PRIORITY = "optional"
LICENSE = "MIT"
DEPENDS = "libparserutils"
SRC_URI = "http://www.netsurf-browser.org/projects/releases/hubbub-${PV}-src.tar.gz"
inherit pkgconfig
EXTRA_OEMAKE = "CURDIR=${S} DESTDIR=${D} PREFIX=${prefix} BUILDDIR=build-OE"
# NOTE: we're using default buildmode here, which results in building only
# static libraries (.a) Not a problem as hubbub is only used by Netsurf
# at the moment
do_stage() {
oe_libinstall -a -C build-OE/ libhubbub ${STAGING_LIBDIR}
install -d ${STAGING_INCDIR}/hubbub
install -m 0644 include/hubbub/*.h ${STAGING_INCDIR}/hubbub
}
do_install() {
oe_runmake install
}
|