diff options
author | Michael Lauer <mickey@vanille-media.de> | 2007-06-21 03:43:21 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2007-06-21 03:43:21 +0000 |
commit | 5ee4cd92f338ea11167845c50debc6b4c7e451f9 (patch) | |
tree | 7592c6527ec52c2ea8d7c619fa5dbfafe2b53bdc /packages/directfb/directfb-examples_1.0.0.bb | |
parent | eb5da6ac735a36d88b82740ececfe685dceb9bba (diff) | |
parent | c557c0fa98fc000c0fec2a3db8bd13378705eac0 (diff) |
merge of '6784a6b701f00708668a4025f803a9342e7ccbdf'
and 'a1d9bb1b5ffce63159a1d8a542921bdbc87ec8d8'
Diffstat (limited to 'packages/directfb/directfb-examples_1.0.0.bb')
-rw-r--r-- | packages/directfb/directfb-examples_1.0.0.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/directfb/directfb-examples_1.0.0.bb b/packages/directfb/directfb-examples_1.0.0.bb new file mode 100644 index 0000000000..8a792b4ae4 --- /dev/null +++ b/packages/directfb/directfb-examples_1.0.0.bb @@ -0,0 +1,20 @@ +DESCRIPTION = "DirectFB extra providers" +DEPENDS = "directfb" +SECTION = "libs" +LICENSE = "GPL" + +SRC_URI = "http://www.directfb.org/downloads/Extras/DirectFB-extra-${PV}.tar.gz" +S = "${WORKDIR}/DirectFB-extra-${PV}" + +inherit autotools + +do_configure_append() { +# find ${S} -type f | xargs sed -i 's:/usr/lib:${STAGING_LIBDIR}:' + find ${S} -type f | xargs sed -i 's:/usr/include:${STAGING_INCDIR}:' +} + +do_stage() { + autotools_stage_all +} + + |