commit ef754312ea65181400b4f948603d5e1b5d4da5e4 Author: Danny Rawlins <monster.romster@gmail.com> Date: Sun Dec 22 13:18:27 2013 +1100 libsndfile: contrib -> opt diff --git a/libsndfile/.footprint b/libsndfile/.footprint new file mode 100644 index 0000000..f29b60b --- /dev/null +++ b/libsndfile/.footprint @@ -0,0 +1,34 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/sndfile-cmp +-rwxr-xr-x root/root usr/bin/sndfile-concat +-rwxr-xr-x root/root usr/bin/sndfile-convert +-rwxr-xr-x root/root usr/bin/sndfile-deinterleave +-rwxr-xr-x root/root usr/bin/sndfile-info +-rwxr-xr-x root/root usr/bin/sndfile-interleave +-rwxr-xr-x root/root usr/bin/sndfile-metadata-get +-rwxr-xr-x root/root usr/bin/sndfile-metadata-set +-rwxr-xr-x root/root usr/bin/sndfile-play +-rwxr-xr-x root/root usr/bin/sndfile-regtest +-rwxr-xr-x root/root usr/bin/sndfile-salvage +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/sndfile.h +-rw-r--r-- root/root usr/include/sndfile.hh +drwxr-xr-x root/root usr/lib/ +-rwxr-xr-x root/root usr/lib/libsndfile.la +lrwxrwxrwx root/root usr/lib/libsndfile.so -> libsndfile.so.1.0.25 +lrwxrwxrwx root/root usr/lib/libsndfile.so.1 -> libsndfile.so.1.0.25 +-rwxr-xr-x root/root usr/lib/libsndfile.so.1.0.25 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/sndfile.pc +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/sndfile-cmp.1.gz +-rw-r--r-- root/root usr/man/man1/sndfile-concat.1.gz +-rw-r--r-- root/root usr/man/man1/sndfile-convert.1.gz +-rw-r--r-- root/root usr/man/man1/sndfile-deinterleave.1.gz +-rw-r--r-- root/root usr/man/man1/sndfile-info.1.gz +-rw-r--r-- root/root usr/man/man1/sndfile-interleave.1.gz +-rw-r--r-- root/root usr/man/man1/sndfile-metadata-get.1.gz +-rw-r--r-- root/root usr/man/man1/sndfile-metadata-set.1.gz +-rw-r--r-- root/root usr/man/man1/sndfile-play.1.gz diff --git a/libsndfile/.md5sum b/libsndfile/.md5sum new file mode 100644 index 0000000..ef6c81f --- /dev/null +++ b/libsndfile/.md5sum @@ -0,0 +1 @@ +e2b7bb637e01022c7d20f95f9c3990a2 libsndfile-1.0.25.tar.gz diff --git a/libsndfile/Pkgfile b/libsndfile/Pkgfile new file mode 100644 index 0000000..c851bf7 --- /dev/null +++ b/libsndfile/Pkgfile @@ -0,0 +1,24 @@ +# Description: Library for manipulating sound files. +# URL: http://www.mega-nerd.com/libsndfile +# Maintainer: Danny Rawlins, monster dot romster at gmail dot com +# Packager: Jay Dolan, jdolan at jdolan dot dyndns dot org +# Depends on: flac alsa-lib libvorbis + +name=libsndfile +version=1.0.25 +release=1 +source=(http://www.mega-nerd.com/$name/files/$name-$version.tar.gz) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --mandir=/usr/man \ + --disable-static + + make + make DESTDIR=$PKG install + rm -r $PKG/usr/share/doc + rmdir $PKG/usr/share +}