mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@26c91a9
This commit is contained in:
124
package/fluidsynth/Config.in
Normal file
124
package/fluidsynth/Config.in
Normal file
@@ -0,0 +1,124 @@
|
||||
config BR2_PACKAGE_FLUIDSYNTH
|
||||
bool "fluidsynth"
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
# the .pc file installed by fluidsynth does not mention its
|
||||
# indirect dependencies in Libs.private.
|
||||
depends on !BR2_STATIC_LIBS
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
help
|
||||
FluidSynth is a real-time software synthesizer based on the
|
||||
SoundFont 2 specifications and has reached widespread
|
||||
distribution. FluidSynth itself does not have a graphical
|
||||
user interface, but due to its powerful API several
|
||||
applications utilize it and it has even found its way onto
|
||||
embedded systems and is used in some mobile apps.
|
||||
|
||||
http://www.fluidsynth.org/
|
||||
|
||||
if BR2_PACKAGE_FLUIDSYNTH
|
||||
|
||||
comment "Output support"
|
||||
|
||||
config BR2_PACKAGE_FLUIDSYNTH_ALSA_LIB
|
||||
bool "alsa"
|
||||
default y
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
select BR2_PACKAGE_ALSA_LIB
|
||||
select BR2_PACKAGE_ALSA_LIB_RAWMIDI
|
||||
select BR2_PACKAGE_ALSA_LIB_SEQ
|
||||
help
|
||||
Enable alsa support.
|
||||
|
||||
comment "alsa support needs a toolchain w/ threads"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
config BR2_PACKAGE_FLUIDSYNTH_JACK2
|
||||
bool "jack2"
|
||||
# See: https://sourceware.org/bugzilla/show_bug.cgi?id=19908
|
||||
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # jack2
|
||||
depends on BR2_USE_MMU # jack2
|
||||
depends on BR2_INSTALL_LIBSTDCPP # jack2
|
||||
depends on !BR2_STATIC_LIBS # jack2
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # jack2
|
||||
select BR2_PACKAGE_JACK2
|
||||
help
|
||||
Enable jack support.
|
||||
|
||||
comment "jack support needs a toolchain w/ dynamic library, threads, C++"
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS
|
||||
depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
|
||||
!BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
config BR2_PACKAGE_FLUIDSYNTH_LIBSNDFILE
|
||||
bool "libsndfile"
|
||||
select BR2_PACKAGE_LIBSNDFILE
|
||||
help
|
||||
Enable libsndfile support, for writing output to WAV files.
|
||||
|
||||
config BR2_PACKAGE_FLUIDSYNTH_PORTAUDIO
|
||||
bool "portaudio"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
select BR2_PACKAGE_PORTAUDIO
|
||||
help
|
||||
Enable portaudio support.
|
||||
|
||||
comment "portaudio support needs a toolchain w/ threads"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
config BR2_PACKAGE_FLUIDSYNTH_PULSEAUDIO
|
||||
bool "pulseaudio"
|
||||
# See: https://sourceware.org/bugzilla/show_bug.cgi?id=19908
|
||||
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS
|
||||
depends on BR2_PACKAGE_PULSEAUDIO_HAS_ATOMIC # pulseaudio
|
||||
depends on BR2_USE_WCHAR # pulseaudio
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio
|
||||
depends on !BR2_STATIC_LIBS # pulseaudio
|
||||
depends on BR2_USE_MMU # pulseaudio
|
||||
select BR2_PACKAGE_PULSEAUDIO
|
||||
help
|
||||
Enable PulseAudio support.
|
||||
|
||||
comment "pulseaudio support needs a toolchain w/ dynamic library, wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS
|
||||
depends on BR2_PACKAGE_PULSEAUDIO_HAS_ATOMIC
|
||||
depends on BR2_STATIC_LIBS || !BR2_USE_MMU || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
comment "Misc options"
|
||||
|
||||
config BR2_PACKAGE_FLUIDSYNTH_DBUS
|
||||
bool "dbus"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_MMU
|
||||
select BR2_PACKAGE_DBUS
|
||||
help
|
||||
Enable dbus support.
|
||||
|
||||
comment "dbus support needs a toolchain w/ threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
config BR2_PACKAGE_FLUIDSYNTH_FLOATS
|
||||
bool "32-bit single precision float"
|
||||
help
|
||||
Enable 32-bit single precision float support, instead of
|
||||
64-bit double precision floats for DSP samples.
|
||||
|
||||
config BR2_PACKAGE_FLUIDSYNTH_READLINE
|
||||
bool "readline"
|
||||
select BR2_PACKAGE_READLINE
|
||||
help
|
||||
Enable readline support, for better line editing in FluidSynth
|
||||
shell.
|
||||
|
||||
endif # BR2_PACKAGE_FLUIDSYNTH
|
||||
|
||||
comment "fluidsynth needs a toolchain w/ threads, wchar, dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
||||
BR2_STATIC_LIBS
|
||||
3
package/fluidsynth/fluidsynth.hash
Normal file
3
package/fluidsynth/fluidsynth.hash
Normal file
@@ -0,0 +1,3 @@
|
||||
# Locally computed
|
||||
sha256 b539b7c65a650b56f01cd60a4e83c6125c217c5a63c0c214ef6274894a677d00 fluidsynth-2.1.5.tar.gz
|
||||
sha256 9b872a8a070b8ad329c4bd380fb1bf0000f564c75023ec8e1e6803f15364b9e9 LICENSE
|
||||
69
package/fluidsynth/fluidsynth.mk
Normal file
69
package/fluidsynth/fluidsynth.mk
Normal file
@@ -0,0 +1,69 @@
|
||||
################################################################################
|
||||
#
|
||||
# fluidsynth
|
||||
#
|
||||
################################################################################
|
||||
|
||||
FLUIDSYNTH_VERSION = 2.1.5
|
||||
FLUIDSYNTH_SITE = $(call github,FluidSynth,fluidsynth,v$(FLUIDSYNTH_VERSION))
|
||||
FLUIDSYNTH_LICENSE = LGPL-2.1+
|
||||
FLUIDSYNTH_LICENSE_FILES = LICENSE
|
||||
FLUIDSYNTH_INSTALL_STAGING = YES
|
||||
FLUIDSYNTH_DEPENDENCIES = libglib2
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FLUIDSYNTH_ALSA_LIB),y)
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-alsa=1
|
||||
FLUIDSYNTH_DEPENDENCIES += alsa-lib
|
||||
else
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-alsa=0
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FLUIDSYNTH_DBUS),y)
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-dbus=1
|
||||
FLUIDSYNTH_DEPENDENCIES += dbus
|
||||
else
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-dbus=0
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FLUIDSYNTH_FLOATS),y)
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-floats=1
|
||||
else
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-floats=0
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FLUIDSYNTH_JACK2),y)
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-jack=1
|
||||
FLUIDSYNTH_DEPENDENCIES += jack2
|
||||
else
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-jack=0
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FLUIDSYNTH_LIBSNDFILE),y)
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-libsndfile=1
|
||||
FLUIDSYNTH_DEPENDENCIES += libsndfile
|
||||
else
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-libsndfile=0
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FLUIDSYNTH_PORTAUDIO),y)
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-portaudio=1
|
||||
FLUIDSYNTH_DEPENDENCIES += portaudio
|
||||
else
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-portaudio=0
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FLUIDSYNTH_PULSEAUDIO),y)
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-pulseaudio=1
|
||||
FLUIDSYNTH_DEPENDENCIES += pulseaudio
|
||||
else
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-pulseaudio=0
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FLUIDSYNTH_READLINE),y)
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-readline=1
|
||||
FLUIDSYNTH_DEPENDENCIES += readline
|
||||
else
|
||||
FLUIDSYNTH_CONF_OPTS += -Denable-readline=0
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
Reference in New Issue
Block a user