summaryrefslogtreecommitdiffstats
path: root/recipes-misc/payload/bonescript.bb
blob: 9c5064ada713073829895e83bc5904e48094d539 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
DESCRIPTION = "Scripting tools for the BeagleBoard and BeagleBone"

inherit allarch

# Ask Jason
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"

SRCREV = "0b264f3144cb6385e33346dec02692d71844898d"
SRC_URI = "git://github.com/jadonk/bonescript.git"
S = "${WORKDIR}/git"

do_install() {
	install -d ${D}${localstatedir}/lib/cloud9/
	cp -a ${S}/* ${D}${localstatedir}/lib/cloud9/
	cp -a ${S}/.git ${D}${localstatedir}/lib/cloud9/
}

FILES_${PN} += "${localstatedir}"