annotate src/sdl_mixer.mk @ 2353:99516e73b368

Move doc/index.html -> index.html
author Volker Grabsch <vog@notjusthosting.com>
date Thu, 29 Mar 2012 12:14:15 +0200
parents f48c5b085a38
children b5321bdec505
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2222
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 306
diff changeset
3
162
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 # SDL_mixer
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
5 PKG := sdl_mixer
566
2758ed1991a2 remove IGNORE lines which are no longer needed
Volker Grabsch <vog@notjusthosting.com>
parents: 535
diff changeset
6 $(PKG)_IGNORE :=
2220
0e591a7a7d79 update packages sdl sdl_image sdl_mixer sdl_net
Martin Gerhardy <martin.gerhardy@gmail.com>
parents: 1707
diff changeset
7 $(PKG)_CHECKSUM := a20fa96470ad9e1052f1957b77ffa68fb090b384
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
8 $(PKG)_SUBDIR := SDL_mixer-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
9 $(PKG)_FILE := SDL_mixer-$($(PKG)_VERSION).tar.gz
525
d82ed3bf661f use consequently "www.libsdl.org" instead of "libsdl.org"
Volker Grabsch <vog@notjusthosting.com>
parents: 516
diff changeset
10 $(PKG)_URL := http://www.libsdl.org/projects/SDL_mixer/release/$($(PKG)_FILE)
516
7454cb5a253e update version of packages atk, gtk, sdl, sdl_image and sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 499
diff changeset
11 $(PKG)_DEPS := gcc sdl libmikmod ogg vorbis smpeg
162
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
2222
b59e16e5f6ad packages sdl sdl_image sdl_mixer: fixed update macros (thanks Laura)
Mark Brand <mabrand@mabrand.nl>
parents: 2220
diff changeset
14 wget -q -O- 'http://hg.libsdl.org/SDL_mixer/tags' | \
b59e16e5f6ad packages sdl sdl_image sdl_mixer: fixed update macros (thanks Laura)
Mark Brand <mabrand@mabrand.nl>
parents: 2220
diff changeset
15 $(SED) -n 's,.*release-\([0-9][^<]*\).*,\1,p' | \
162
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 head -1
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 endef
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 define $(PKG)_BUILD
759
bf4bcb3370fa changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 755
diff changeset
20 $(SED) -i 's,^\(Requires:.*\),\1 vorbisfile,' '$(1)/SDL_mixer.pc.in'
736
9232c79dac70 bugfix and test program for package sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 714
diff changeset
21 echo \
9232c79dac70 bugfix and test program for package sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 714
diff changeset
22 'Libs.private:' \
9232c79dac70 bugfix and test program for package sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 714
diff changeset
23 "`$(PREFIX)/$(TARGET)/bin/libmikmod-config --libs`" \
9232c79dac70 bugfix and test program for package sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 714
diff changeset
24 "`$(PREFIX)/$(TARGET)/bin/smpeg-config --libs`" \
9232c79dac70 bugfix and test program for package sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 714
diff changeset
25 >> '$(1)/SDL_mixer.pc.in'
759
bf4bcb3370fa changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 755
diff changeset
26 $(SED) -i 's,for path in /usr/local; do,for path in; do,' '$(1)/configure'
162
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 cd '$(1)' && ./configure \
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
28 --host='$(TARGET)' \
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
29 --disable-shared \
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
30 --prefix='$(PREFIX)/$(TARGET)' \
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
31 --with-sdl-prefix='$(PREFIX)/$(TARGET)' \
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
32 --disable-sdltest \
516
7454cb5a253e update version of packages atk, gtk, sdl, sdl_image and sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 499
diff changeset
33 --enable-music-mod \
162
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
34 --enable-music-ogg \
516
7454cb5a253e update version of packages atk, gtk, sdl, sdl_image and sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 499
diff changeset
35 --disable-music-flac \
7454cb5a253e update version of packages atk, gtk, sdl, sdl_image and sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 499
diff changeset
36 --enable-music-mp3 \
7454cb5a253e update version of packages atk, gtk, sdl, sdl_image and sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 499
diff changeset
37 --disable-music-mod-shared \
162
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
38 --disable-music-ogg-shared \
516
7454cb5a253e update version of packages atk, gtk, sdl, sdl_image and sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 499
diff changeset
39 --disable-music-flac-shared \
7454cb5a253e update version of packages atk, gtk, sdl, sdl_image and sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 499
diff changeset
40 --disable-music-mp3-shared \
162
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
41 --disable-smpegtest \
516
7454cb5a253e update version of packages atk, gtk, sdl, sdl_image and sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 499
diff changeset
42 --with-smpeg-prefix='$(PREFIX)/$(TARGET)' \
7454cb5a253e update version of packages atk, gtk, sdl, sdl_image and sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 499
diff changeset
43 LIBMIKMOD_CONFIG='$(PREFIX)/$(TARGET)/bin/libmikmod-config' \
7454cb5a253e update version of packages atk, gtk, sdl, sdl_image and sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 499
diff changeset
44 LIBS='-lvorbis -logg'
162
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
45 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
736
9232c79dac70 bugfix and test program for package sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 714
diff changeset
46
9232c79dac70 bugfix and test program for package sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents: 714
diff changeset
47 '$(TARGET)-gcc' \
1707
4e48476ea587 fix compiler errors instead of suppressing them
Volker Grabsch <vog@notjusthosting.com>
parents: 1704
diff changeset
48 -W -Wall -Werror -ansi -pedantic \
755
7b15d99ad223 improved coding style
Volker Grabsch <vog@notjusthosting.com>
parents: 736
diff changeset
49 '$(2).c' -o '$(PREFIX)/$(TARGET)/bin/test-sdl_mixer.exe' \
7b15d99ad223 improved coding style
Volker Grabsch <vog@notjusthosting.com>
parents: 736
diff changeset
50 `'$(TARGET)-pkg-config' SDL_mixer --cflags --libs`
162
4377bbba7f64 translated package: sdl_mixer
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
51 endef