diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-04-24 17:03:11 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-04-24 17:03:11 +0000 |
commit | 280b0f60d63f8c5284b0b7fd074319f967d8d600 (patch) | |
tree | e89a4cecf54436d49f65fb4f2c81743e09723c05 /ipkg | |
parent | 273a862fea8a2cd1a7672dfa28a6c0c52434dbad (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into r2d2.tm.informatik.uni-frankfurt.de:/home/projekte/packages
2004/04/24 19:03:05+02:00 uni-frankfurt.de!mickey
fix libipkg staging
BKrev: 408a9dcf5xpDZrY3LUiPF2IZJhU9AA
Diffstat (limited to 'ipkg')
-rw-r--r-- | ipkg/libipkg_0.99.120.oe | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ipkg/libipkg_0.99.120.oe b/ipkg/libipkg_0.99.120.oe index e69de29bb2..10a4326756 100644 --- a/ipkg/libipkg_0.99.120.oe +++ b/ipkg/libipkg_0.99.120.oe @@ -0,0 +1,25 @@ +include ipkg_${PV}.oe + +DESCRIPTION = "Itsy Package Manager Library" + +do_stage() { + oe_soinstall .libs/libipkg.so.0.0.0 ${STAGING_LIBDIR}/ + install -d ${STAGING_INCDIR}/replace/ + install -m 0644 replace/replace.h ${STAGING_INCDIR}/replace/ + for f in *.h + do + install -m 0644 $f ${STAGING_INCDIR}/ + done + +} + +do_install() { + install -d ${D}/${libdir}/ + oe_soinstall .libs/libipkg.so.0.0.0 ${D}/${libdir}/ +} + +pkg_postinst() { +} + +pkg_postrm() { +} |