lv2-ttl-generator(native): initial add

To have this small tool can reduce number of patches

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
This commit is contained in:
Andreas Müller
2018-03-25 20:22:21 +02:00
parent 3ed03d4f8d
commit b5bde85b01

View File

@@ -0,0 +1,22 @@
SUMMARY = "lv2-ttl-generator-native"
LICENSE = "ISC"
LIC_FILES_CHKSUM = " \
file://LICENSE;md5=7b4d7947003bd60e5475fc61c6d014da \
"
SRC_URI = "git://github.com/DISTRHO/DPF.git"
SRCREV = "70cec6a9d0222b32abdcaec02cd7b01378c4d78b"
S = "${WORKDIR}/git"
PV = "0.0.0+git${SRCPV}"
BBCLASSEXTEND = "native"
do_compile() {
cd ${S}/utils/lv2-ttl-generator
oe_runmake
}
do_install() {
install -d ${D}${bindir}
install -m 0755 ${S}/utils/lv2_ttl_generator ${D}${bindir}
}