From: Victor Martinez Date: Fri, 12 Mar 2010 11:54:48 +0000 (+0000) Subject: libogg: Initial import (verified compilation). X-Git-Url: http://gitweb/?a=commitdiff_plain;h=fea039b19a5977e7d49c38317bcca7d8b1322934;hp=20131fce24b2874fccaec52fb02135ab968cbc79;p=attic%2Fports%2Fopt-cross.git libogg: Initial import (verified compilation). --- diff --git a/libogg/.footprint b/libogg/.footprint new file mode 100644 index 0000000..27536e7 --- /dev/null +++ b/libogg/.footprint @@ -0,0 +1,17 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/ogg/ +-rw-r--r-- root/root usr/include/ogg/config_types.h +-rw-r--r-- root/root usr/include/ogg/ogg.h +-rw-r--r-- root/root usr/include/ogg/os_types.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libogg.a +-rwxr-xr-x root/root usr/lib/libogg.la +lrwxrwxrwx root/root usr/lib/libogg.so -> libogg.so.0.6.0 +lrwxrwxrwx root/root usr/lib/libogg.so.0 -> libogg.so.0.6.0 +-rwxr-xr-x root/root usr/lib/libogg.so.0.6.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/ogg.pc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/aclocal/ +-rw-r--r-- root/root usr/share/aclocal/ogg.m4 diff --git a/libogg/.md5sum b/libogg/.md5sum new file mode 100644 index 0000000..2e8e8c4 --- /dev/null +++ b/libogg/.md5sum @@ -0,0 +1 @@ +10200ec22543841d9d1c23e0aed4e5e9 libogg-1.1.4.tar.gz diff --git a/libogg/Pkgfile b/libogg/Pkgfile new file mode 100644 index 0000000..4c79087 --- /dev/null +++ b/libogg/Pkgfile @@ -0,0 +1,19 @@ +# Description: Ogg bitstream and framing library +# URL: http://www.xiph.org/ogg/ +# Maintainer: Tilman Sauerbeck, tilman at crux dot nu +# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org + +name=libogg +version=1.1.4 +release=1 +source=(http://downloads.xiph.org/releases/ogg/$name-$version.tar.gz) + +build() { + cd $name-$version + ./configure --build=$CHOST \ + --host=$CTARGET \ + --prefix=/usr + make + make DESTDIR=$PKG install + rm -rf $PKG/usr/share/doc +}