blob: f39d0d918fb7d55e5d706d8e86e1c4b8a2362e8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SECTION = "base"
DESCRIPTION = "Itsy Package Manager utilities link script"
CONFLICTS = "ipkg-utils"
PV_append = "${CVSDATE}"
SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=ipkg-utils \
file://fix-ipkg-link.patch;patch=1 "
SRC_URI_append_beagle = "file://fix-ipkg-link-beagle.patch;patch=1"
S = "${WORKDIR}/ipkg-utils"
do_compile() {
:
}
do_install() {
install -d ${D}/${bindir}
install -m 0755 ipkg-link ${D}/${bindir}
}
|