summaryrefslogtreecommitdiffstats
path: root/recipes/ipkg-utils/ipkg-utils-native_1.6+cvs20050404.bb
blob: 3a6aaed14362c364dc73c5d53897a44380e0894c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require ipkg-utils_${PV}.bb

RDEPENDS_${PN} = ""
PR = "r25"

inherit native

NATIVE_INSTALL_WORKS = "1"

# Avoid circular dependencies from package_ipk.bbclass
PACKAGES = ""
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/ipkg-utils"
INSTALL += "arfile.py"

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