diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-27 05:50:58 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-27 05:50:58 +0000 |
commit | dbbae0f79b6989e581b648c3b6b1214a931d27e0 (patch) | |
tree | 53d80dbaa1219fe36afb3b266b5f20f2496ef2e7 /edb/edb_cvs.oe | |
parent | 98997b44ca0ad5461ab8e8a476140a2be1f3a8cf (diff) |
Add staging tasks to edb and eet.
BKrev: 40b581c2fxZ28tzmL-Zvie8IQ5AByA
Diffstat (limited to 'edb/edb_cvs.oe')
-rw-r--r-- | edb/edb_cvs.oe | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/edb/edb_cvs.oe b/edb/edb_cvs.oe index 64145af0e1..0b9aa92ee3 100644 --- a/edb/edb_cvs.oe +++ b/edb/edb_cvs.oe @@ -7,7 +7,17 @@ PV = "${CVSDATE}" SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/enlightenment;module=e17/libs/edb;date=${CVSDATE}" S = "${WORKDIR}/edb" -inherit autotools +inherit autotools pkgconfig EXTRA_OECONF = "--disable-gtk \ --disable-ncurses" + +do_stage () { + oe_libinstall -C src libedb ${STAGING_LIBDIR}/ + install -m 0644 ${S}/src/Edb.h ${STAGING_INCDIR}/ + cat edb-config | sed -e 's,/usr/include,${STAGING_INCDIR},g; \ + s,/usr/lib,${STAGING_LIBDIR},g; \ + s,/usr/bin,${STAGING_BINDIR},g; \ + s,/usr,${STAGING_LIBDIR}/..,g;' > ${STAGING_BINDIR}/edb-config + chmod u+x ${STAGING_BINDIR}/edb-config +} |