diff options
author | James Meyer <james.meyer@operamail.com> | 2009-05-20 02:51:25 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-05-20 02:51:25 (GMT) |
commit | ab2f6a2a66c7e2b47d03da81e72109aa96fd9c2c (patch) | |
tree | 7b5db6af9db2113343a65fbac37e4821d939ba3c /abs/extra-testing/libsamplerate | |
parent | c1fb5b95e554560a87424a6f3334abf049f999b8 (diff) | |
parent | e7cd231a27e5f65ed92b56c85e0e05aeb3645132 (diff) | |
download | linhes_pkgbuild-ab2f6a2a66c7e2b47d03da81e72109aa96fd9c2c.zip linhes_pkgbuild-ab2f6a2a66c7e2b47d03da81e72109aa96fd9c2c.tar.gz linhes_pkgbuild-ab2f6a2a66c7e2b47d03da81e72109aa96fd9c2c.tar.bz2 |
Merge branch 'HEAD' of ssh://jams@knoppmyth.net/mount/repository/LinHES-PKGBUILD
Diffstat (limited to 'abs/extra-testing/libsamplerate')
-rw-r--r-- | abs/extra-testing/libsamplerate/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/extra-testing/libsamplerate/PKGBUILD b/abs/extra-testing/libsamplerate/PKGBUILD new file mode 100644 index 0000000..1537675 --- /dev/null +++ b/abs/extra-testing/libsamplerate/PKGBUILD @@ -0,0 +1,23 @@ +# $Id$ +# Maintainer: Eric Belanger <eric@archlinux.org> +# Contributor: Jason Chu <jchu@xentac.net> + +pkgname=libsamplerate +pkgver=0.1.7 +pkgrel=1 +pkgdesc="Secret Rabbit Code - aka Sample Rate Converter for audio" +arch=('i686' 'x86_64') +url="http://www.mega-nerd.com/SRC/index.html" +license=('GPL') +depends=('libsndfile' 'flac>=1.1.4') +options=('!libtool') +source=(http://www.mega-nerd.com/SRC/libsamplerate-${pkgver}.tar.gz) +md5sums=('ad093e60ec44f0a60de8e29983ddbc0f') +sha1sums=('98a52392eb97f9ba724ca024b3af29a8a0cc0206') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr || return 1 + make || return 1 + make DESTDIR=${pkgdir} install || return 1 +} |