view src/sdl_sound.mk @ 1308:48cef772b11a

fix configure options and remove an unnecessary sed action in package sdl_sound
author Volker Grabsch <vog@notjusthosting.com>
date Sun, 10 Oct 2010 12:08:28 +0200
parents 104c7045f292
children 4e5785e62a10
line wrap: on
line source

# This file is part of mingw-cross-env.
# See doc/index.html for further information.

# SDL_sound
PKG             := sdl_sound
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 1.0.3
$(PKG)_CHECKSUM := 1984bc20b2c756dc71107a5a0a8cebfe07e58cb1
$(PKG)_SUBDIR   := SDL_sound-$($(PKG)_VERSION)
$(PKG)_FILE     := SDL_sound-$($(PKG)_VERSION).tar.gz
$(PKG)_WEBSITE  := http://icculus.org/SDL_sound/
$(PKG)_URL      := http://icculus.org/SDL_sound/downloads/$($(PKG)_FILE)
$(PKG)_DEPS     := gcc sdl libmikmod ogg vorbis smpeg speex

define $(PKG)_UPDATE
    wget -q -O- 'http://hg.icculus.org/icculus/SDL_sound/tags' | \
    $(SED) -n 's,.*release-\([0-9][^<]*\).*,\1,p' | \
    head -1
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 \
        --enable-smpeg \
        --enable-mpglib \
        --enable-mikmod \
        --enable-modplug \
        --enable-ogg \
        --enable-flac \
        --enable-speex \
        --enable-physfs \
        --disable-altcvt \
        LIBS='-lvorbis -logg' \
        CFLAGS='-fno-inline'
    $(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' \
        `'$(TARGET)-pkg-config' sdl --cflags --libs` \
        -lSDL_sound \
        `'$(TARGET)-pkg-config' vorbisfile --libs` \
        -lspeex -lmikmod
endef