36 lines
1.0 KiB
BlitzBasic
36 lines
1.0 KiB
BlitzBasic
SUMMARY = "Luppp is a music creation tool, intended for live use"
|
|
HOMEPAGE = "http://openavproductions.com/luppp/"
|
|
LICENSE = "GPLv3"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
inherit cmake pkgconfig gtk-icon-cache
|
|
|
|
DEPENDS = " \
|
|
gtk+3 \
|
|
jack \
|
|
cairo \
|
|
liblo \
|
|
libsndfile1 \
|
|
libsamplerate0 \
|
|
ntk \
|
|
"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/openAVproductions/openAV-Luppp.git \
|
|
file://0001-CMake-Remove-arch-detection-it-detects-build-host.patch \
|
|
"
|
|
SRCREV = "3d3ac0a1743365b958033bdd1625dd19041d2c5f"
|
|
PV = "1.2.1"
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install:append() {
|
|
install -Dm 644 ${S}/resources/metadata/luppp.desktop ${D}${datadir}/applications/luppp.desktop
|
|
install -Dm 644 ${S}/resources/icons/luppp.svg ${D}/${datadir}/icons/hicolor/scalable/apps/luppp.svg
|
|
install -d ${D}/${datadir}/${BPN}/controllers
|
|
for ctlr in `find ${S}/resources/controllers -name *ctlr`; do
|
|
install -m 644 $ctlr ${D}/${datadir}/${BPN}/controllers/
|
|
done
|
|
}
|
|
|
|
RDEPENDS:${PN} += "hicolor-icon-theme"
|