diff options
Diffstat (limited to 'openembedded/packages/loudmouth/loudmouth_1.0.1.bb')
-rwxr-xr-x | openembedded/packages/loudmouth/loudmouth_1.0.1.bb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/openembedded/packages/loudmouth/loudmouth_1.0.1.bb b/openembedded/packages/loudmouth/loudmouth_1.0.1.bb index a9264e0b75..ca8dd27778 100755 --- a/openembedded/packages/loudmouth/loudmouth_1.0.1.bb +++ b/openembedded/packages/loudmouth/loudmouth_1.0.1.bb | |||
@@ -2,8 +2,15 @@ LICENSE = "LGPL" | |||
2 | DEPENDS = "glib-2.0 gnutls" | 2 | DEPENDS = "glib-2.0 gnutls" |
3 | MAINTAINER = "Chris Lord <chris@openedhand.com>" | 3 | MAINTAINER = "Chris Lord <chris@openedhand.com>" |
4 | DESCRIPTION = "Loudmouth is a lightweight and easy-to-use C library for programming with the Jabber protocol." | 4 | DESCRIPTION = "Loudmouth is a lightweight and easy-to-use C library for programming with the Jabber protocol." |
5 | PR = "r1" | ||
5 | 6 | ||
6 | SRC_URI = "http://ftp.imendio.com/pub/imendio/${PN}/src/${PN}-${PV}.tar.gz" | 7 | SRC_URI = "http://ftp.imendio.com/pub/imendio/${PN}/src/${PN}-${PV}.tar.gz" |
7 | 8 | ||
8 | inherit autotools pkgconfig | 9 | inherit autotools pkgconfig |
9 | 10 | ||
11 | do_stage() { | ||
12 | oe_libinstall -so -C loudmouth libloudmouth-1 ${STAGING_LIBDIR} | ||
13 | |||
14 | install -d ${STAGING_INCDIR}/${PN}/ | ||
15 | install -m 0644 ${S}/${PN}/*.h ${STAGING_INCDIR}/${PN}/ | ||
16 | } | ||