mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
11
package/sdl2_mixer/Config.in
Normal file
11
package/sdl2_mixer/Config.in
Normal file
@@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_SDL2_MIXER
|
||||
bool "sdl2_mixer"
|
||||
depends on BR2_PACKAGE_SDL2
|
||||
help
|
||||
SDL_mixer is a sample multi-channel audio mixer library. It
|
||||
supports any number of simultaneously playing channels of 16
|
||||
bit stereo audio, plus a single channel of music, mixed by
|
||||
the popular FLAC, MikMod MOD, Timidity MIDI, Ogg Vorbis, and
|
||||
SMPEG MP3 libraries.
|
||||
|
||||
http://www.libsdl.org/projects/SDL_mixer/
|
||||
2
package/sdl2_mixer/sdl2_mixer.hash
Normal file
2
package/sdl2_mixer/sdl2_mixer.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 5a24f62a610249d744cbd8d28ee399d8905db7222bf3bdbc8a8b4a76e597695f SDL2_mixer-2.0.1.tar.gz
|
||||
40
package/sdl2_mixer/sdl2_mixer.mk
Normal file
40
package/sdl2_mixer/sdl2_mixer.mk
Normal file
@@ -0,0 +1,40 @@
|
||||
################################################################################
|
||||
#
|
||||
# sdl2_mixer
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SDL2_MIXER_VERSION = 2.0.1
|
||||
SDL2_MIXER_SOURCE = SDL2_mixer-$(SDL2_MIXER_VERSION).tar.gz
|
||||
SDL2_MIXER_SITE = http://www.libsdl.org/projects/SDL_mixer/release
|
||||
SDL2_MIXER_LICENSE = Zlib
|
||||
SDL2_MIXER_LICENSE_FILES = COPYING.txt
|
||||
SDL2_MIXER_INSTALL_STAGING = YES
|
||||
SDL2_MIXER_DEPENDENCIES = sdl2 host-pkgconf
|
||||
|
||||
SDL2_MIXER_CONF_OPTS = \
|
||||
--disable-fluidsynth \
|
||||
--disable-music-mp3
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FLAC),y)
|
||||
SDL2_MIXER_CONF_OPTS += --enable-music-flac
|
||||
SDL2_MIXER_DEPENDENCIES += flac
|
||||
else
|
||||
SDL2_MIXER_CONF_OPTS += --disable-music-flac
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBMODPLUG),y)
|
||||
SDL2_MIXER_CONF_OPTS += --enable-music-mod-modplug
|
||||
SDL2_MIXER_DEPENDENCIES += libmodplug
|
||||
else
|
||||
SDL2_MIXER_CONF_OPTS += --disable-music-mod-modplug
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_TREMOR),y)
|
||||
SDL2_MIXER_CONF_OPTS += --enable-music-ogg-tremor
|
||||
SDL2_MIXER_DEPENDENCIES += tremor
|
||||
else
|
||||
SDL2_MIXER_CONF_OPTS += --disable-music-ogg-tremor
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user