Files
meta-musicians/recipes-musicians/soundfont-collection/sf-tools_git.bb
Andreas Müller e55aae0802 All recipes: Auto change licenses to SPDX
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
2022-03-10 23:35:27 +01:00

22 lines
578 B
BlitzBasic

SUMMARY = "Commandline tools for soundfont analysis and split"
LICENSE = "GPL-2.0-or-later"
LIC_FILES_CHKSUM = " \
file://LICENSE;md5=75859989545e37968a99b631ef42722e \
"
SRC_URI = "git://github.com/schnitzeltony/soundfont-cmdline-tools.git;branch=master;protocol=https"
SRCREV = "66b6cd4446abf616837718c62fa3f03bfb97afeb"
S = "${WORKDIR}/git"
PV = "0.0.0+git${SRCPV}"
BBCLASSEXTEND = "native"
do_compile() {
oe_runmake
}
do_install() {
install -d ${D}${bindir}
install -m 0755 ${S}/sf2-test ${D}${bindir}/
install -m 0755 ${S}/sf2-split ${D}${bindir}/
}