diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2013-12-22 13:18:27 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2013-12-22 13:18:53 +1100 |
commit | ef754312ea65181400b4f948603d5e1b5d4da5e4 (patch) | |
tree | 3e5b036f5dfe32779bd908b61bfb6e4dc8143ecf /libsndfile | |
parent | 110b8d533d21a14b71ddbc01907860e303a56b2e (diff) | |
download | opt-ef754312ea65181400b4f948603d5e1b5d4da5e4.tar.gz opt-ef754312ea65181400b4f948603d5e1b5d4da5e4.tar.xz |
libsndfile: contrib -> opt
Diffstat (limited to 'libsndfile')
-rw-r--r-- | libsndfile/.footprint | 34 | ||||
-rw-r--r-- | libsndfile/.md5sum | 1 | ||||
-rw-r--r-- | libsndfile/Pkgfile | 24 |
3 files changed, 59 insertions, 0 deletions
diff --git a/libsndfile/.footprint b/libsndfile/.footprint new file mode 100644 index 000000000..f29b60b41 --- /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 000000000..ef6c81f2d --- /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 000000000..c851bf7cd --- /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 +} |