blob: 05520519b6862d2163dc94eb6548a1e6577d0087 (
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
|
DESCRIPTION = " dot.conf is an easy to use and powerful configuration file parser library"
HOMEPAGE = "http://www.azzit.de/dotconf/"
LICENSE = "LGPLv2"
PR = "r0"
inherit autotools
SRC_URI = "http://www.azzit.de/dotconf/download/v1.0/dotconf-${PV}.tar.gz \
file://srcMakefile.am_00.patch;patch=1"
S = "${WORKDIR}/dotconf-${PV}"
do_install() {
install -d ${D}${libdir}
install -d ${D}${includedir}
install -m 0644 ${S}/src/dotconf.h ${D}${includedir}
oe_libinstall -C src -so libdotconf ${D}${libdir}
}
do_stage() {
install -m 0644 ${S}/src/dotconf.h ${STAGING_INCDIR}/
oe_libinstall -C src -so libdotconf ${STAGING_LIBDIR}/
}
|