mxe/src/sdl_sound.mk

52 lines
1.7 KiB
Makefile
Raw Normal View History

2012-03-28 14:46:58 +01:00
# This file is part of MXE.
2012-03-29 11:14:15 +01:00
# See index.html for further information.
2010-10-01 11:39:03 +01:00
PKG := sdl_sound
$(PKG)_IGNORE :=
$(PKG)_CHECKSUM := 1984bc20b2c756dc71107a5a0a8cebfe07e58cb1
$(PKG)_SUBDIR := SDL_sound-$($(PKG)_VERSION)
$(PKG)_FILE := SDL_sound-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := http://icculus.org/SDL_sound/downloads/$($(PKG)_FILE)
$(PKG)_DEPS := gcc sdl libmikmod ogg vorbis flac speex
2010-10-01 11:39:03 +01:00
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://hg.icculus.org/icculus/SDL_sound/tags' | \
$(SED) -n 's,.*release-\([0-9][^<]*\).*,\1,p' | \
head -1
2010-10-01 11:39:03 +01:00
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)' \
--with-sdl-prefix='$(PREFIX)/$(TARGET)' \
--disable-sdltest \
--enable-voc \
--enable-wav \
--enable-raw \
--enable-aiff \
--enable-au \
--enable-shn \
--enable-midi \
--disable-smpeg \
--enable-mpglib \
--enable-mikmod \
--disable-modplug \
--enable-ogg \
--enable-flac \
--enable-speex \
--disable-physfs \
--disable-altcvt \
2010-10-10 13:43:35 +01:00
CFLAGS='-g -O2 -fno-inline' \
LIBS="`'$(TARGET)-pkg-config' vorbisfile flac speex --libs` `'$(PREFIX)/$(TARGET)/bin/libmikmod-config' --libs`"
2010-10-01 11:39:03 +01:00
$(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
'$(TARGET)-gcc' \
-W -Wall -Werror -std=c99 -pedantic \
'$(2).c' -o '$(PREFIX)/$(TARGET)/bin/test-sdl_sound.exe' \
-lSDL_sound \
`'$(TARGET)-pkg-config' sdl vorbisfile flac speex --cflags --libs` \
`'$(PREFIX)/$(TARGET)/bin/libmikmod-config' --cflags --libs`
2010-10-01 11:39:03 +01:00
endef