PKGBUILDs/extra/vorbis-tools/PKGBUILD
2009-10-09 21:23:22 -05:00

22 lines
726 B
Bash

# $Id: PKGBUILD 53952 2009-10-04 07:40:25Z eric $
# Maintainer: Eric Belanger <eric@archlinux.org>
# Contributor: Judd Vinet <jvinet@zeroflux.org>
pkgname=vorbis-tools
pkgver=1.2.0
pkgrel=4
pkgdesc="Extra tools for Ogg-Vorbis"
arch=('i686' 'x86_64')
url='http://www.xiph.org/vorbis/'
license=('GPL2')
depends=('libao' 'libvorbis' 'curl>=7.16.2' 'flac>=1.1.4')
source=(http://downloads.xiph.org/releases/vorbis/${pkgname}-${pkgver}.tar.gz)
md5sums=('df976d24e51ef3d87cd462edf747bf9a')
sha1sums=('c5c5ee4637ab8c9fc953d203663b7264432f874a')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --without-speex --enable-vcut || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}