summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Lambers <marlam@marlam.de>2012-12-03 18:07:37 (GMT)
committerTony Theodore <tonyt@logyst.com>2012-12-05 13:36:09 (GMT)
commit8edaa9de3c3e758d6360f39e2c1eaf2479445e77 (patch)
tree4db8cacb89a0a81f9e8cbaba66d79288bcd54a20
parent2c1d79f97dce32c54dbff1a3a80a1542c94c1f6f (diff)
downloadmxe-8edaa9de3c3e758d6360f39e2c1eaf2479445e77.zip
mxe-8edaa9de3c3e758d6360f39e2c1eaf2479445e77.tar.gz
mxe-8edaa9de3c3e758d6360f39e2c1eaf2479445e77.tar.bz2
Add package teem.
-rw-r--r--index.html5
-rw-r--r--src/teem.mk22
2 files changed, 27 insertions, 0 deletions
diff --git a/index.html b/index.html
index 2a90c2a..a6be786 100644
--- a/index.html
+++ b/index.html
@@ -1919,6 +1919,11 @@ USE_OSGPLUGIN(&lt;plugin2&gt;)
<td id="taglib-website"><a href="http://developer.kde.org/~wheeler/taglib.html">TagLib</a></td>
</tr>
<tr>
+ <td id="teem-package">teem</td>
+ <td id="teem-version">1.10.0</td>
+ <td id="teem-website"><a href="http://teem.sourceforge.net/">Teem</a></td>
+ </tr>
+ <tr>
<td id="theora-package">theora</td>
<td id="theora-version">1.1.1</td>
<td id="theora-website"><a href="http://theora.org/">Theora</a></td>
diff --git a/src/teem.mk b/src/teem.mk
new file mode 100644
index 0000000..95f5e64
--- /dev/null
+++ b/src/teem.mk
@@ -0,0 +1,22 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := teem
+$(PKG)_IGNORE :=
+$(PKG)_CHECKSUM := f63ff41111ca5aa6ff6fc7653ec0e089da61bac6
+$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)-src
+$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION)-src.tar.gz
+$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
+$(PKG)_DEPS := gcc zlib bzip2 pthreads levmar
+
+define $(PKG)_UPDATE
+ /bin/false
+endef
+
+define $(PKG)_BUILD
+ cd '$(1)' && cmake . \
+ -DCMAKE_TOOLCHAIN_FILE='$(CMAKE_TOOLCHAIN_FILE)' \
+ -DTeem_PNG=OFF \
+ -DQNANHIBIT_VALUE=1 -DQNANHIBIT_VALUE__TRYRUN_OUTPUT=1
+ $(MAKE) -C '$(1)' -j '$(JOBS)' install VERBOSE=1
+endef