diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2011-11-02 23:21:12 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2011-11-02 23:23:36 +1100 |
commit | a7274c754d1d4c55d379f7f4a77359a547f496cb (patch) | |
tree | 41248a42de922c74913f7aaf75d4b24ad4c5f6c7 | |
parent | 24958734d8213dfb78daa73e6babb93ebf4af48a (diff) | |
download | opt-a7274c754d1d4c55d379f7f4a77359a547f496cb.tar.gz opt-a7274c754d1d4c55d379f7f4a77359a547f496cb.tar.xz |
libtheora: contrib -> opt
-rw-r--r-- | libtheora/.footprint | 27 | ||||
-rw-r--r-- | libtheora/.md5sum | 1 | ||||
-rw-r--r-- | libtheora/Pkgfile | 24 |
3 files changed, 52 insertions, 0 deletions
diff --git a/libtheora/.footprint b/libtheora/.footprint new file mode 100644 index 000000000..124250350 --- /dev/null +++ b/libtheora/.footprint @@ -0,0 +1,27 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/theora/ +-rw-r--r-- root/root usr/include/theora/codec.h +-rw-r--r-- root/root usr/include/theora/theora.h +-rw-r--r-- root/root usr/include/theora/theoradec.h +-rw-r--r-- root/root usr/include/theora/theoraenc.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libtheora.a +-rwxr-xr-x root/root usr/lib/libtheora.la +lrwxrwxrwx root/root usr/lib/libtheora.so -> libtheora.so.0.3.10 +lrwxrwxrwx root/root usr/lib/libtheora.so.0 -> libtheora.so.0.3.10 +-rwxr-xr-x root/root usr/lib/libtheora.so.0.3.10 +-rw-r--r-- root/root usr/lib/libtheoradec.a +-rwxr-xr-x root/root usr/lib/libtheoradec.la +lrwxrwxrwx root/root usr/lib/libtheoradec.so -> libtheoradec.so.1.1.4 +lrwxrwxrwx root/root usr/lib/libtheoradec.so.1 -> libtheoradec.so.1.1.4 +-rwxr-xr-x root/root usr/lib/libtheoradec.so.1.1.4 +-rw-r--r-- root/root usr/lib/libtheoraenc.a +-rwxr-xr-x root/root usr/lib/libtheoraenc.la +lrwxrwxrwx root/root usr/lib/libtheoraenc.so -> libtheoraenc.so.1.1.2 +lrwxrwxrwx root/root usr/lib/libtheoraenc.so.1 -> libtheoraenc.so.1.1.2 +-rwxr-xr-x root/root usr/lib/libtheoraenc.so.1.1.2 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/theora.pc +-rw-r--r-- root/root usr/lib/pkgconfig/theoradec.pc +-rw-r--r-- root/root usr/lib/pkgconfig/theoraenc.pc diff --git a/libtheora/.md5sum b/libtheora/.md5sum new file mode 100644 index 000000000..e3523451c --- /dev/null +++ b/libtheora/.md5sum @@ -0,0 +1 @@ +9eeabf1ad65b7f41533854a59f7a716d libtheora-1.1.1.tar.xz diff --git a/libtheora/Pkgfile b/libtheora/Pkgfile new file mode 100644 index 000000000..30e52963f --- /dev/null +++ b/libtheora/Pkgfile @@ -0,0 +1,24 @@ +# Description: A free and open video compression format from the Xiph.org Foundation. +# URL: http://www.theora.org/ +# Maintainer: Danny Rawlins, monster dot romster at gmail dot com +# Packager: Matt Housh, jaeger at crux dot nu +# Depends on: libvorbis + +name=libtheora +version=1.1.1 +release=1 +source=(http://downloads.xiph.org/releases/theora/$name-$version.tar.xz) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --mandir=/usr/man \ + --disable-examples + + make + make DESTDIR=$PKG install + rm -r $PKG/usr/share/doc + rmdir $PKG/usr/share +} |