# HG changeset patch # User Nikos Chantziaras # Date 1335182387 -36000 # Node ID 7dbb9f04ee3339e6587a1e019b8b7451ce707621 # Parent 42295c6227c2ed682508a42e4aba079180a62ad4 new package: libmodplug diff -r 42295c6227c2 -r 7dbb9f04ee33 index.html --- a/index.html Mon Apr 23 11:53:51 2012 +0200 +++ b/index.html Mon Apr 23 21:59:47 2012 +1000 @@ -1414,6 +1414,11 @@ libmng + libmodplug + 0.8.8.4 + libmodplug + + libntlm 1.3 Libntlm diff -r 42295c6227c2 -r 7dbb9f04ee33 src/libmodplug-test.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/libmodplug-test.c Mon Apr 23 21:59:47 2012 +1000 @@ -0,0 +1,17 @@ +/* + * This file is part of MXE. + * See index.html for further information. + */ + +#include + +int main(int argc, char *argv[]) +{ + (void)argc; + (void)argv; + + ModPlug_Settings settings; + ModPlug_GetSettings(&settings); + ModPlug_SetSettings(&settings); + return 0; +} diff -r 42295c6227c2 -r 7dbb9f04ee33 src/libmodplug.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/libmodplug.mk Mon Apr 23 21:59:47 2012 +1000 @@ -0,0 +1,31 @@ +# This file is part of mingw-cross-env. +# See doc/index.html for further information. + +# libmodplug +PKG := libmodplug +$(PKG)_IGNORE := +$(PKG)_CHECKSUM := df4deffe542b501070ccb0aee37d875ebb0c9e22 +$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz +$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/modplug-xmms/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE) +$(PKG)_DEPS := gcc + +define $(PKG)_UPDATE + wget -q -O- 'http://sourceforge.net/projects/modplug-xmms/files/libmodplug/' | \ + $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \ + head -1 +endef + +define $(PKG)_BUILD + cd '$(1)' && ./configure \ + --host='$(TARGET)' \ + --disable-shared \ + --enable-static \ + --prefix='$(PREFIX)/$(TARGET)' + $(MAKE) -C '$(1)' -j '$(JOBS)' install + + '$(TARGET)-gcc' \ + -W -Wall -ansi -pedantic \ + '$(2).c' -o '$(PREFIX)/$(TARGET)/bin/test-libmodplug.exe' \ + `'$(TARGET)-pkg-config' libmodplug --cflags --libs` +endef