mirror of
https://github.com/schnitzeltony/meta-musicians.git
synced 2026-01-29 17:18:41 +01:00
51 lines
1.4 KiB
BlitzBasic
51 lines
1.4 KiB
BlitzBasic
SUMMARY = "Software synth with a classic subtractive synthesizer topology"
|
|
HOMEPAGE = "http://amsynth.github.io/"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=67b604758dd265c185ce36fcf76a889d"
|
|
|
|
inherit autotools pkgconfig gtk-icon-cache gettext pack_audio_plugins
|
|
|
|
DEPENDS += " \
|
|
gtk+ \
|
|
intltool-native \
|
|
"
|
|
|
|
SRC_URI = "git://github.com/amsynth/amsynth.git;branch=develop;protocol=https"
|
|
SRCREV = "39bd448fd499e0e802aa6a20273d64655bda356a"
|
|
PV = "1.12.4"
|
|
S = "${WORKDIR}/git"
|
|
|
|
PACKAGECONFIG ??= "alsa jack lv2 nsm"
|
|
|
|
PACKAGECONFIG[oss] = "--with-oss,--without-oss"
|
|
PACKAGECONFIG[alsa] = "--with-alsa,--without-alsa,alsa-lib"
|
|
PACKAGECONFIG[dssi] = "--with-dssi,--without-dssi,dssi liblo"
|
|
PACKAGECONFIG[jack] = "--with-jack,--without-jack,jack"
|
|
PACKAGECONFIG[lv2] = "--with-lv2,--without-lv2,lv2"
|
|
PACKAGECONFIG[nsm] = "--with-nsm,--without-nsm,liblo,new-session-manager"
|
|
|
|
PACKAGES =+ "${PN}-standalone"
|
|
FILES:${PN}-standalone += " \
|
|
${datadir}/appdata/amsynth.appdata.xml \
|
|
${datadir}/applications \
|
|
${datadir}/icons \
|
|
${bindir} \
|
|
"
|
|
|
|
FILES:${PN_DSSI} += " \
|
|
${datadir}/appdata/dssi-amsynth-plugin.metainfo.xml \
|
|
"
|
|
|
|
FILES:${PN_LV2} += " \
|
|
${datadir}/appdata/lv2-amsynth-plugin.metainfo.xml \
|
|
"
|
|
|
|
FILES:${PN_VST} += " \
|
|
${datadir}/appdata/vst-amsynth-plugin.metainfo.xml \
|
|
"
|
|
|
|
RDEPENDS:${PN}-standalone += "${PN}"
|
|
RDEPENDS:${PN_DSSI} += "${PN}"
|
|
RDEPENDS:${PN_LV2} += "${PN}"
|
|
RDEPENDS:${PN_VST} += "${PN}"
|