summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--index.html5
-rw-r--r--src/libmodplug-test.c17
-rw-r--r--src/libmodplug.mk31
3 files changed, 53 insertions, 0 deletions
diff --git a/index.html b/index.html
index 353c792..4596d16 100644
--- a/index.html
+++ b/index.html
@@ -1414,6 +1414,11 @@ USE_OSGPLUGIN(<plugin2>)
<td id="libmng-website"><a href="http://www.libmng.com/">libmng</a></td>
</tr>
<tr>
+ <td id="libmodplug-package">libmodplug</td>
+ <td id="libmodplug-version">0.8.8.4</td>
+ <td id="libmodplug-website"><a href="http://modplug-xmms.sourceforge.net/">libmodplug</a></td>
+ </tr>
+ <tr>
<td id="libntlm-package">libntlm</td>
<td id="libntlm-version">1.3</td>
<td id="libntlm-website"><a href="http://www.nongnu.org/libntlm/">Libntlm</a></td>
diff --git a/src/libmodplug-test.c b/src/libmodplug-test.c
new file mode 100644
index 0000000..5ce1585
--- /dev/null
+++ b/src/libmodplug-test.c
@@ -0,0 +1,17 @@
+/*
+ * This file is part of MXE.
+ * See index.html for further information.
+ */
+
+#include <modplug.h>
+
+int main(int argc, char *argv[])
+{
+ (void)argc;
+ (void)argv;
+
+ ModPlug_Settings settings;
+ ModPlug_GetSettings(&settings);
+ ModPlug_SetSettings(&settings);
+ return 0;
+}
diff --git a/src/libmodplug.mk b/src/libmodplug.mk
new file mode 100644
index 0000000..f464dce
--- /dev/null
+++ b/src/libmodplug.mk
@@ -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