summaryrefslogtreecommitdiff
path: root/ipkg-utils/ipkg-utils_1.6cvs.oe
blob: d14130def528e806780e743e475506dd55e1b7ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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"

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"

do_compile() {
	oe_runmake ipkg-compare-versions
}

do_stage() {
	for i in $INSTALL; do
		install $i ${STAGING_BINDIR}
	done
}

do_install() {
	install -d ${D}${bindir}
	for i in $INSTALL; do
		install $i ${D}${bindir}
	done
}