Skip to content

Commit 637814b

Browse files
authored
Merge pull request #1742 from misl6/master
Updated sdl2_mixer version to 2.0.4
2 parents 1b36096 + 803b433 commit 637814b

File tree

2 files changed

+23
-27
lines changed

2 files changed

+23
-27
lines changed

pythonforandroid/recipes/sdl2_mixer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
class LibSDL2Mixer(BootstrapNDKRecipe):
5-
version = '2.0.1'
5+
version = '2.0.4'
66
url = 'https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-{version}.tar.gz'
77
dir_name = 'SDL2_mixer'
88

Lines changed: 22 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,25 @@
1-
--- orig/Android.mk 2016-01-03 07:15:57.000000000 +0100
2-
+++ patch/Android.mk 2016-04-15 21:28:55.169697882 +0200
3-
@@ -6,22 +6,22 @@
4-
1+
--- orig/Android.mk 2018-10-31 15:58:59.000000000 +0100
2+
+++ patched/Android.mk 2019-03-08 12:11:35.271258500 +0100
3+
@@ -3,7 +3,7 @@
4+
5+
6+
# Enable this if you want to support loading FLAC music with libFLAC
7+
-SUPPORT_FLAC ?= true
8+
+SUPPORT_FLAC := false
9+
FLAC_LIBRARY_PATH := external/flac-1.3.2
10+
11+
# Enable this if you want to support loading OGG Vorbis music via Tremor
12+
@@ -12,11 +12,11 @@
13+
VORBIS_LIBRARY_PATH := external/libvorbisidec-1.2.1
14+
15+
# Enable this if you want to support loading MP3 music via MPG123
16+
-SUPPORT_MP3_MPG123 ?= true
17+
+SUPPORT_MP3_MPG123 := false
18+
MPG123_LIBRARY_PATH := external/mpg123-1.25.6
19+
520
# Enable this if you want to support loading MOD music via modplug
6-
# The library path should be a relative path to this directory.
721
-SUPPORT_MOD_MODPLUG ?= true
822
+SUPPORT_MOD_MODPLUG := false
9-
MODPLUG_LIBRARY_PATH := external/libmodplug-0.8.8.4
10-
11-
# Enable this if you want to support loading MOD music via mikmod
12-
# The library path should be a relative path to this directory.
13-
-SUPPORT_MOD_MIKMOD ?= true
14-
+SUPPORT_MOD_MIKMOD := false
15-
MIKMOD_LIBRARY_PATH := external/libmikmod-3.1.12
16-
17-
# Enable this if you want to support loading MP3 music via SMPEG
18-
# The library path should be a relative path to this directory.
19-
-SUPPORT_MP3_SMPEG ?= true
20-
+SUPPORT_MP3_SMPEG := false
21-
SMPEG_LIBRARY_PATH := external/smpeg2-2.0.0
22-
23-
# Enable this if you want to support loading OGG Vorbis music via Tremor
24-
# The library path should be a relative path to this directory.
25-
-SUPPORT_OGG ?= true
26-
+SUPPORT_OGG := true
27-
OGG_LIBRARY_PATH := external/libogg-1.3.1
28-
VORBIS_LIBRARY_PATH := external/libvorbisidec-1.2.1
29-
23+
MODPLUG_LIBRARY_PATH := external/libmodplug-0.8.9.0
24+
25+
# Enable this if you want to support TiMidity

0 commit comments

Comments
 (0)