package/lv2: new package

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
James Hilliard 2022-01-27 12:23:09 -07:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 0d4c8ce8a2
commit b066f1756f
5 changed files with 50 additions and 0 deletions

View File

@ -1286,6 +1286,7 @@ F: package/exfatprogs/
F: package/gensio/
F: package/lua-std-debug/
F: package/lua-std-normalize/
F: package/lv2/
F: package/pipewire/
F: package/python-aioconsole/
F: package/python-aiodns/

View File

@ -1351,6 +1351,7 @@ menu "Audio/Sound"
source "package/libsoundtouch/Config.in"
source "package/libsoxr/Config.in"
source "package/libvorbis/Config.in"
source "package/lv2/Config.in"
source "package/mp4v2/Config.in"
source "package/openal/Config.in"
source "package/opencore-amr/Config.in"

8
package/lv2/Config.in Normal file
View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_LV2
bool "lv2"
help
LV2 is a plugin standard for audio systems. It defines
a minimal yet extensible C API for plugin code and a
format for plugin "bundles".
https://lv2plug.in/

4
package/lv2/lv2.hash Normal file
View File

@ -0,0 +1,4 @@
# Locally calculated after checking signature
# https://lv2plug.in/spec/lv2-1.18.2.tar.bz2.asc
sha256 4e891fbc744c05855beb5dfa82e822b14917dd66e98f82b8230dbd1c7ab2e05e lv2-1.18.2.tar.bz2
sha256 0b0b07d852e3ce7fa04986e141f73001bd7f260683968f0a19e02dbcc4131aa6 COPYING

36
package/lv2/lv2.mk Normal file
View File

@ -0,0 +1,36 @@
################################################################################
#
# lv2
#
################################################################################
LV2_VERSION = 1.18.2
LV2_SITE = https://lv2plug.in/spec
LV2_SOURCE = lv2-$(LV2_VERSION).tar.bz2
LV2_LICENSE = ISC
LV2_LICENSE_FILES = COPYING
LV2_DEPENDENCIES = host-pkgconf
LV2_INSTALL_STAGING = YES
LV2_CONF_OPTS += \
--no-coverage \
--no-check-links \
--copy-headers
ifeq ($(BR2_PACKAGE_CAIRO),y)
LV2_DEPENDENCIES += cairo
endif
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
LV2_DEPENDENCIES += libsndfile
endif
ifeq ($(BR2_PACKAGE_LIBGTK2),y)
LV2_DEPENDENCIES += libgtk2
endif
ifeq ($(BR2_STATIC_LIBS),y)
LV2_CONF_OPTS += --no-plugins
endif
$(eval $(waf-package))