package/lilv: new package

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Tested-by: Gilles Talis <gilles.talis@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
James Hilliard 2022-01-27 12:23:11 -07:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 47c0176b39
commit 9c8453734b
5 changed files with 51 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/lilv/
F: package/lv2/
F: package/pipewire/
F: package/python-aioconsole/

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/lilv/Config.in"
source "package/lv2/Config.in"
source "package/mp4v2/Config.in"
source "package/openal/Config.in"

15
package/lilv/Config.in Normal file
View File

@ -0,0 +1,15 @@
config BR2_PACKAGE_LILV
bool "lilv"
depends on !BR2_STATIC_LIBS
select BR2_PACKAGE_LV2
select BR2_PACKAGE_SERD
select BR2_PACKAGE_SORD
select BR2_PACKAGE_SRATOM
help
Lilv is a C library to make the use of LV2 plugins as simple
as possible for applications.
https://drobilla.net/software/lilv.html
comment "lilv needs a toolchain w/ dynamic library"
depends on BR2_STATIC_LIBS

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

@ -0,0 +1,4 @@
# Locally calculated after checking signature
# https://download.drobilla.net/lilv-0.24.12.tar.bz2.asc
sha256 26a37790890c9c1f838203b47f5b2320334fe92c02a4d26ebbe2669dbd769061 lilv-0.24.12.tar.bz2
sha256 e06562d6bcf0341b2ac2ad0f0ca36801d2ebf388d5ef297011625e4c36e963f0 COPYING

30
package/lilv/lilv.mk Normal file
View File

@ -0,0 +1,30 @@
################################################################################
#
# lilv
#
################################################################################
LILV_VERSION = 0.24.12
LILV_SITE = https://download.drobilla.net
LILV_SOURCE = lilv-$(LILV_VERSION).tar.bz2
LILV_LICENSE = ISC
LILV_LICENSE_FILES = COPYING
LILV_DEPENDENCIES = host-pkgconf lv2 serd sord sratom
LILV_INSTALL_STAGING = YES
LILV_CONF_OPTS += \
--dyn-manifest \
--no-bash-completion \
--no-coverage
ifeq ($(BR2_PACKAGE_PYTHON3),y)
LILV_DEPENDENCIES += python3
else
LILV_CONF_OPTS += --no-bindings
endif
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
LILV_DEPENDENCIES += libsndfile
endif
$(eval $(waf-package))