blob: eaad1bf645189efda747f2a3d1e1ed2b6b712f3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DESCRIPTION="Itsy Package Manager utilities"
DEPENDS=""
SECTION="base"
PRIORITY="optional"
MAINTAINER="Chris Larson <kergoth@handhelds.org>"
LICENSE="GPL"
#DEPENDS=virtual/libc
SRC_URI="cvs://anoncvs:anoncvs@192.58.209.91/cvs;module=ipkg-utils"
S="${WORKDIR}/${PN}"
inherit autotools
do_stage() {
cp ipkg* ${STAGING_BINDIR}/
}
do_install() {
install -d ${D}/usr/bin
cp ipkg* ${D}/usr/bin/
}
|