diff options
author | Danny Rawlins <romster@shortcircuit.net.au> | 2006-12-20 18:30:56 +1100 |
---|---|---|
committer | Danny Rawlins <romster@shortcircuit.net.au> | 2006-12-20 18:30:56 +1100 |
commit | 6578001a7d8533401bf388efaa80075b89a2d817 (patch) | |
tree | 97aa6f45f180517d266a408db91fdb2f428c2def | |
parent | d5158a8bb9afa9be08eb4d9b6673d710f45955af (diff) | |
download | contrib-6578001a7d8533401bf388efaa80075b89a2d817.tar.gz contrib-6578001a7d8533401bf388efaa80075b89a2d817.tar.xz |
liba52: taken over
-rw-r--r-- | liba52/.footprint | 19 | ||||
-rw-r--r-- | liba52/.md5sum | 1 | ||||
-rw-r--r-- | liba52/Pkgfile | 24 |
3 files changed, 44 insertions, 0 deletions
diff --git a/liba52/.footprint b/liba52/.footprint new file mode 100644 index 000000000..7314234e6 --- /dev/null +++ b/liba52/.footprint @@ -0,0 +1,19 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/a52dec +-rwxr-xr-x root/root usr/bin/extract_a52 +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/a52dec/ +-rw-r--r-- root/root usr/include/a52dec/a52.h +-rw-r--r-- root/root usr/include/a52dec/attributes.h +-rw-r--r-- root/root usr/include/a52dec/audio_out.h +-rw-r--r-- root/root usr/include/a52dec/mm_accel.h +drwxr-xr-x root/root usr/lib/ +-rwxr-xr-x root/root usr/lib/liba52.la +lrwxrwxrwx root/root usr/lib/liba52.so -> liba52.so.0.0.0 +lrwxrwxrwx root/root usr/lib/liba52.so.0 -> liba52.so.0.0.0 +-rwxr-xr-x root/root usr/lib/liba52.so.0.0.0 +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/a52dec.1.gz +-rw-r--r-- root/root usr/man/man1/extract_a52.1.gz diff --git a/liba52/.md5sum b/liba52/.md5sum new file mode 100644 index 000000000..50c5d7395 --- /dev/null +++ b/liba52/.md5sum @@ -0,0 +1 @@ +caa9f5bc44232dc8aeea773fea56be80 a52dec-0.7.4.tar.gz diff --git a/liba52/Pkgfile b/liba52/Pkgfile new file mode 100644 index 000000000..21111d9c0 --- /dev/null +++ b/liba52/Pkgfile @@ -0,0 +1,24 @@ +# Description: Library for decoding ATSC A/52 streams. +# URL: http://liba52.sourceforge.net/ +# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au +# Packager: Matt Housh, jaeger at morpheus dot net +# Depends on: + +name=liba52 +version=0.7.4 +release=1 +source=(http://liba52.sourceforge.net/files/a52dec-$version.tar.gz) + +build() { + cd a52dec-$version + + ./configure \ + --prefix=/usr \ + --disable-solaris-audio \ + --disable-win \ + --enable-shared \ + --disable-static + + make && make install prefix=$PKG/usr +} + |