diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-07-23 21:10:57 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-07-23 21:10:57 +0000 |
commit | 454558d6767f99b76d38ec191287d60f97b070c8 (patch) | |
tree | df45fef1de9e69296fcd3441cc0b21a6689abcc7 | |
parent | 7828ca7cbd989a9304e137333047988cc1ebbe82 (diff) |
fix ipkg-utils packaging
BKrev: 41017ee1XA-DSIeN4i41Ny_96vfiFA
-rw-r--r-- | ipkg-utils/ipkg-utils_1.6cvs.oe | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/ipkg-utils/ipkg-utils_1.6cvs.oe b/ipkg-utils/ipkg-utils_1.6cvs.oe index d14130def5..8ecdb023d0 100644 --- a/ipkg-utils/ipkg-utils_1.6cvs.oe +++ b/ipkg-utils/ipkg-utils_1.6cvs.oe @@ -1,32 +1,37 @@ -PV_append = "${CVSDATE}" -PR = "r1" DESCRIPTION = "Itsy Package Manager utilities" DEPENDS = "" SECTION = "base" PRIORITY = "optional" MAINTAINER = "Chris Larson <kergoth@handhelds.org>" LICENSE = "GPL" -#DEPENDS = "virtual/libc" RDEPENDS = "python" +PV_append = "${CVSDATE}" +PR = "r2" SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=ipkg-utils" S = "${WORKDIR}/ipkg-utils" -INSTALL = "ipkg-build ipkg-deb-unbuild ipkg-unbuild ipkg-compare-versions ipkg-upload ipkg-make-index ipkg.py" +INSTALL = "ipkg-build ipkg-deb-unbuild ipkg-unbuild ipkg-compare-versions ipkg-upload ipkg-make-index ipkg-link ipkg.py" do_compile() { oe_runmake ipkg-compare-versions } do_stage() { - for i in $INSTALL; do - install $i ${STAGING_BINDIR} + for i in ${INSTALL} + do + install -m 0755 $i ${STAGING_BINDIR} done } do_install() { install -d ${D}${bindir} - for i in $INSTALL; do - install $i ${D}${bindir} + for i in ${INSTALL} + do + install -m 0755 $i ${D}${bindir} done } + +PACKAGES_prepend = "ipkg-link " +FILES_ipkg-link = "${bindir}/ipkg-link" + |