summaryrefslogtreecommitdiff
path: root/ipkg/ipkg_0.99.120.oe
diff options
context:
space:
mode:
Diffstat (limited to 'ipkg/ipkg_0.99.120.oe')
-rw-r--r--ipkg/ipkg_0.99.120.oe21
1 files changed, 18 insertions, 3 deletions
diff --git a/ipkg/ipkg_0.99.120.oe b/ipkg/ipkg_0.99.120.oe
index 1e57325a19..276267684a 100644
--- a/ipkg/ipkg_0.99.120.oe
+++ b/ipkg/ipkg_0.99.120.oe
@@ -1,16 +1,21 @@
DESCRIPTION = "Itsy Package Manager"
+DESCRIPTION_libipkg = "Itsy Package Manager Library"
LICENSE = "GPL"
-PROVIDES = "virtual/ipkg"
+PROVIDES = "virtual/ipkg libipkg"
DEPENDS = "virtual/libc"
PR = "r1"
+PACKAGES =+ "libipkg-dev libipkg "
+FILES_libipkg-dev = "${libdir}/*.a ${libdir}/*.la ${libdir}/*.so"
+FILES_libipkg = "${libdir}"
+
SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=familiar/dist/ipkg;tag=${@'V' + oe.data.getVar('PV',d,1).replace('.', '-')} \
file://${FILESDIR}/buffer-size.patch;patch=1;pnum=0"
S = "${WORKDIR}/ipkg/C"
inherit autotools libtool
-pkg_postinst () {
+pkg_postinst_ipkg () {
#!/bin/sh
if [ "x$D" != "x" ]; then
install -d ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d
@@ -22,7 +27,17 @@ fi
update-alternatives --install /usr/bin/ipkg ipkg /usr/bin/ipkg-cl 100
}
-pkg_postrm () {
+pkg_postrm_ipkg () {
#!/bin/sh
update-alternatives --remove ipkg /usr/bin/ipkg-cl
}
+
+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
+}