summaryrefslogtreecommitdiffstats
path: root/package/libtheora
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2012-04-30 03:48:15 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2012-05-05 23:40:27 +0200
commit84d589a963d902849b7022091e97ec71c38ed82e (patch)
tree121dfa6b27d4e3645ce1c6a09c4fbc295d461d0c /package/libtheora
parent33f454bbef77638a29ec24807e30740323e15b3e (diff)
downloadbuildroot-novena-84d589a963d902849b7022091e97ec71c38ed82e.tar.gz
buildroot-novena-84d589a963d902849b7022091e97ec71c38ed82e.zip
package/multimedia: move multimedia libraries out
Move multimedia libraries ouf of the Audio and Video category into the Libraries/Multimedia one. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/libtheora')
-rw-r--r--package/libtheora/Config.in9
-rw-r--r--package/libtheora/libtheora.mk20
2 files changed, 29 insertions, 0 deletions
diff --git a/package/libtheora/Config.in b/package/libtheora/Config.in
new file mode 100644
index 000000000..bf20a5037
--- /dev/null
+++ b/package/libtheora/Config.in
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_LIBTHEORA
+ bool "libtheora"
+ select BR2_PACKAGE_LIBOGG
+ select BR2_PACKAGE_LIBVORBIS
+ help
+ A library for the free and open video compression format "Theora"
+ from the Xiph.org Foundation.
+
+ http://www.theora.org/
diff --git a/package/libtheora/libtheora.mk b/package/libtheora/libtheora.mk
new file mode 100644
index 000000000..89489b787
--- /dev/null
+++ b/package/libtheora/libtheora.mk
@@ -0,0 +1,20 @@
+#############################################################
+#
+# libtheora
+#
+#############################################################
+LIBTHEORA_VERSION = 1.1.1
+LIBTHEORA_SOURCE = libtheora-$(LIBTHEORA_VERSION).tar.bz2
+LIBTHEORA_SITE = http://downloads.xiph.org/releases/theora
+LIBTHEORA_INSTALL_STAGING = YES
+
+LIBTHEORA_CONF_OPT = \
+ --disable-oggtest \
+ --disable-vorbistest \
+ --disable-sdltest \
+ --disable-examples \
+ --disable-spec
+
+LIBTHEORA_DEPENDENCIES = libogg libvorbis host-pkg-config
+
+$(eval $(call AUTOTARGETS))