summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Gerhardy <martin.gerhardy@gmail.com>2013-07-27 08:48:26 (GMT)
committerMartin Gerhardy <martin.gerhardy@gmail.com>2013-07-31 19:09:43 (GMT)
commit7667f4b999b5418b2c444043feb0ba7a000b76fc (patch)
tree6a66490f3bdaed439fbaf64c97324579216d3894 /src
parentb49fa82fddd3c30edcea888767a2998afeeb015a (diff)
downloadmxe-7667f4b999b5418b2c444043feb0ba7a000b76fc.zip
mxe-7667f4b999b5418b2c444043feb0ba7a000b76fc.tar.gz
mxe-7667f4b999b5418b2c444043feb0ba7a000b76fc.tar.bz2
new package sdl2_mixer (release candidate)
Diffstat (limited to 'src')
-rw-r--r--src/sdl2_mixer.mk51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/sdl2_mixer.mk b/src/sdl2_mixer.mk
new file mode 100644
index 0000000..232c8c4
--- /dev/null
+++ b/src/sdl2_mixer.mk
@@ -0,0 +1,51 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := sdl2_mixer
+$(PKG)_IGNORE :=
+$(PKG)_VERSION := 2.0.0
+$(PKG)_CHECKSUM := 78228e33462dcb359990a2fd752176f243e809f0
+$(PKG)_SUBDIR := SDL2_mixer-$($(PKG)_VERSION)
+$(PKG)_FILE := SDL2_mixer-$($(PKG)_VERSION).tar.gz
+#$(PKG)_URL := http://www.libsdl.org/projects/SDL_mixer/release/$($(PKG)_FILE)
+$(PKG)_URL := http://www.libsdl.org/tmp/SDL_mixer/release/$($(PKG)_FILE)
+$(PKG)_DEPS := gcc sdl2 libmodplug ogg vorbis smpeg2
+
+define $(PKG)_UPDATE
+ $(WGET) -q -O- 'http://hg.libsdl.org/SDL_mixer/tags' | \
+ $(SED) -n 's,.*release-\([0-9][^<]*\).*,\1,p' | \
+ head -1
+endef
+
+define $(PKG)_BUILD
+ $(SED) -i 's,^\(Requires:.*\),\1 vorbisfile,' '$(1)/SDL2_mixer.pc.in'
+ echo \
+ 'Libs.private:' \
+ "`$(TARGET)-pkg-config libmodplug --libs`" \
+ >> '$(1)/SDL2_mixer.pc.in'
+ $(SED) -i 's,for path in /usr/local; do,for path in; do,' '$(1)/configure'
+ cd '$(1)' && ./configure \
+ --host='$(TARGET)' \
+ --disable-shared \
+ --prefix='$(PREFIX)/$(TARGET)' \
+ --with-sdl-prefix='$(PREFIX)/$(TARGET)' \
+ --disable-sdltest \
+ --disable-music-mod \
+ --enable-music-mod-modplug \
+ --enable-music-ogg \
+ --disable-music-flac \
+ --enable-music-mp3 \
+ --disable-music-ogg-shared \
+ --disable-music-flac-shared \
+ --disable-smpegtest
+ WINDRES='$(TARGET)-windres' \
+ LIBS='-lvorbis -logg'
+ $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
+
+# '$(TARGET)-gcc' \
+# -W -Wall -Werror -ansi -pedantic \
+# '$(2).c' -o '$(PREFIX)/$(TARGET)/bin/test-sdl2_mixer.exe' \
+# `'$(TARGET)-pkg-config' SDL2_mixer --cflags --libs`
+endef
+
+$(PKG)_BUILD_i686-pc-mingw32 =