diff options
author | Niels Kristian Bech Jensen <nkbj1970@hotmail.com> | 2013-11-10 06:44:12 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2013-11-10 06:44:12 (GMT) |
commit | b990625ce3b3f538bd6936a50ca10fd1ab5ef1f2 (patch) | |
tree | 76143810ccf0b152b2a2220462c496a2f8e194cb /src/sdl_mixer.mk | |
parent | be8dd135fbce3dc88e82c4e71ced6d96cd5bfa00 (diff) | |
download | mxe-b990625ce3b3f538bd6936a50ca10fd1ab5ef1f2.zip mxe-b990625ce3b3f538bd6936a50ca10fd1ab5ef1f2.tar.gz mxe-b990625ce3b3f538bd6936a50ca10fd1ab5ef1f2.tar.bz2 |
sdl packages: filter 1.x series in update macro
Diffstat (limited to 'src/sdl_mixer.mk')
-rw-r--r-- | src/sdl_mixer.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sdl_mixer.mk b/src/sdl_mixer.mk index 6c2677f..d4f0ad4 100644 --- a/src/sdl_mixer.mk +++ b/src/sdl_mixer.mk @@ -13,7 +13,9 @@ $(PKG)_DEPS := gcc sdl libmodplug ogg vorbis smpeg define $(PKG)_UPDATE $(WGET) -q -O- 'http://hg.libsdl.org/SDL_mixer/tags' | \ $(SED) -n 's,.*release-\([0-9][^<]*\).*,\1,p' | \ - head -1 + grep '^1\.' | \ + $(SORT) -V | \ + tail -1 endef define $(PKG)_BUILD |