blob: bfd9d8cf7f1bd0768c16a2a7ae5f16c8e92d419a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
include treecc_${PV}.bb
SECTION = "devel"
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/treecc-${PV}"
MAINTAINER = "Kirill Kononenko <krokas@aport.ru"
S = "${WORKDIR}/treecc-${PV}"
PR = ""
inherit native autotools
do_stage() {
rm -f ${STAGING_BINDIR}/treecc
install -m 0755 treecc ${STAGING_BINDIR}/
}
|