aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/minipredict/libdictionary.bb
blob: 05cdc268e340cc287975a004195a89e9e25ff50b (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
inherit gpe pkgconfig

DESCRIPTION = "Dictionary access library, used by minipredict."
RRECOMMENDS = "dictionary"
SECTION = "gpe"
PRIORITY = "optional"

SRC_URI = "http://handhelds.org/~paxanima/files/${PN}.tar.gz"

S = "${WORKDIR}/${PN}/"

do_compile() {
	oe_runmake lib
}

FILES_${PN} = "${libdir}/libdictionary.so"
FILES_${PN}-dev = "${libdir}/libdictionary/*.o ${includedir}/libdictionary/*.h"

do_stage() {
	install -d ${STAGING_INCDIR}/libdictionary
	install ${S}/*.h ${STAGING_INCDIR}/libdictionary/
	oe_libinstall -C ${S} libdictionary ${STAGING_LIBDIR}/
}

do_install() {
	install -d ${D}/${libdir}
	install -d ${D}/${libdir}/libdictionary
	install -d ${D}/${includedir}/libdictionary
	install ${S}/libdictionary.so ${D}/${libdir}/
	install ${S}/*.h ${D}/${includedir}/libdictionary/
	install ${S}/*.o ${D}/${libdir}/libdictionary/
}