blob: ca8dd27778417bd49b2dba4eba2fc4a5885cf816 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
LICENSE = "LGPL"
DEPENDS = "glib-2.0 gnutls"
MAINTAINER = "Chris Lord <chris@openedhand.com>"
DESCRIPTION = "Loudmouth is a lightweight and easy-to-use C library for programming with the Jabber protocol."
PR = "r1"
SRC_URI = "http://ftp.imendio.com/pub/imendio/${PN}/src/${PN}-${PV}.tar.gz"
inherit autotools pkgconfig
do_stage() {
oe_libinstall -so -C loudmouth libloudmouth-1 ${STAGING_LIBDIR}
install -d ${STAGING_INCDIR}/${PN}/
install -m 0644 ${S}/${PN}/*.h ${STAGING_INCDIR}/${PN}/
}
|