summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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(<plugin2>)
<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