blob: d5ecc0dd68c2a973c509006da9aa7392af3859b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "library for parsing CORBA IDL files"
SECTION = "gnome/libs"
SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libIDL/0.8/libIDL-${PV}.tar.bz2"
DEPENDS = "glib-2.0"
FILES_${PN} = "${libdir}/*.so.*"
FILES_${PN}-dev += " ${bindir}"
S = "${WORKDIR}/libIDL-${PV}"
inherit autotools pkgconfig
do_stage() {
oe_runmake install prefix=${STAGING_DIR} \
bindir=${STAGING_BINDIR} \
includedir=${STAGING_INCDIR} \
libdir=${STAGING_LIBDIR} \
datadir=${STAGING_DATADIR}
}
|