diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-05-09 00:11:49 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-05-09 00:11:49 +0000 |
commit | 56839b7f517cb47bd0ad02ab374452010b0c703a (patch) | |
tree | 03ebb7aaf1de640993260151bc5e8c8ddf782bd7 /gnome | |
parent | bbfba28e8e0240997c63dec170c725ae3a27774d (diff) |
add do_stage - patch courtesy pb_.
BKrev: 409d7745eQ7uXsHVm4VsIETrApOe4w
Diffstat (limited to 'gnome')
-rw-r--r-- | gnome/libidl_0.8.3.oe | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnome/libidl_0.8.3.oe b/gnome/libidl_0.8.3.oe index e69de29bb2..5e3095a500 100644 --- a/gnome/libidl_0.8.3.oe +++ b/gnome/libidl_0.8.3.oe @@ -0,0 +1,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 libtool pkgconfig + +do_stage() { + oe_runmake install prefix=${STAGING_DIR} \ + bindir=${STAGING_BINDIR} \ + includedir=${STAGING_INCDIR} \ + libdir=${STAGING_LIBDIR} \ + datadir=${STAGING_DATADIR} +} |