blob: e30d66b58aa8c2a0c76c2fe91bbdb0666719dbac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTION = "Convenient scripts to be used with openmoko toolchain."
PV = "0.0+svnr${SRCREV}"
PE = "1"
PR = "r1"
SRC_URI = "svn://svn.openmoko.org/trunk/src/host;module=toolchain-scripts;proto=http"
S = "${WORKDIR}/toolchain-scripts"
do_install () {
install -d ${D}/${prefix}
cp -dr ${S}/* ${D}/${prefix}
find ${D} -name ".svn" | xargs rm -rf
rm -rf ${D}/${prefix}/patches
}
PACKAGE_ARCH = "all"
FILES_${PN} = "/*"
inherit sdk
|