aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/flickcurl/flickcurl_1.9.bb
blob: ea1cdb1974cbace12ad1d486bce92c296556a545 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
DESCRIPTION = "flickcurl is a C libarry for the Flick API"
SECTION = "libs"
HOMEPAGE = "http://librdf.org/flickcurl/"
LICENSE = "LGPL 2.1/GPL 2/Apache 2.0"
PR = "r0"
SRC_URI = "http://download.dajobe.org/${PN}/${PN}-${PV}.tar.gz"

DEPENDS = "curl libxml2"

EXTRA_OECONF = "ac_cv_func_vsnprintf=no"

inherit autotools

do_stage() {
	 install -d ${STAGING_INCDIR}
         install -m 0644 ${D}/usr/include/*.h ${STAGING_INCDIR}
	 oe_libinstall -so libflickcurl ${STAGING_LIBDIR}
}

LEAD_SONAME = "libflickcurl.so.1"

FILES_${PN} += "${libdir}/libflickcurl.so.*"