From f491b9ee21eaf671927fc31581720bcd91ad9bab Mon Sep 17 00:00:00 2001 From: Phil Blundell Date: Sun, 20 Jun 2004 19:51:36 +0000 Subject: Merge bk://openembedded@openembedded.bkbits.net/packages into stealth.(none):/home/pb/oe/oe-packages 2004/06/20 20:22:55+01:00 (none)!pb add forgotten simpad bits to SRC_URI 2004/06/20 20:20:50+01:00 (none)!pb need to compile ipkg-compare-versions before installing it BKrev: 40d5eac80O9EsFyPel2nCHMw0LkRZw --- ipkg-utils/ipkg-utils_1.6cvs.oe | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'ipkg-utils/ipkg-utils_1.6cvs.oe') diff --git a/ipkg-utils/ipkg-utils_1.6cvs.oe b/ipkg-utils/ipkg-utils_1.6cvs.oe index faef8947c3..d14130def5 100644 --- a/ipkg-utils/ipkg-utils_1.6cvs.oe +++ b/ipkg-utils/ipkg-utils_1.6cvs.oe @@ -1,4 +1,5 @@ PV_append = "${CVSDATE}" +PR = "r1" DESCRIPTION = "Itsy Package Manager utilities" DEPENDS = "" SECTION = "base" @@ -11,13 +12,21 @@ RDEPENDS = "python" SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=ipkg-utils" S = "${WORKDIR}/ipkg-utils" -inherit distutils +INSTALL = "ipkg-build ipkg-deb-unbuild ipkg-unbuild ipkg-compare-versions ipkg-upload ipkg-make-index ipkg.py" + +do_compile() { + oe_runmake ipkg-compare-versions +} do_stage() { - cp ipkg* ${STAGING_BINDIR}/ + for i in $INSTALL; do + install $i ${STAGING_BINDIR} + done } do_install() { install -d ${D}${bindir} - cp ipkg* ${D}${bindir}/ + for i in $INSTALL; do + install $i ${D}${bindir} + done } -- cgit v1.2.3