# $Id: PKGBUILD 176867 2013-02-02 03:18:42Z heftig $ # Maintainer: Jan Alexander Steffens (heftig) # Contributor: Thomas Dziedzic < gostrc at gmail > # Contributor: Lauri Niskanen # Contributor: Ray Rashif pkgname=celt pkgver=0.11.3 pkgrel=1 pkgdesc="Low-latency audio communication codec" arch=(i686 x86_64) url="http://www.celt-codec.org/" license=(BSD) depends=(libogg) options=('!libtool') source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('5511732a426cc42bf986ca79b5cdd02f') build() { cd $pkgname-$pkgver ./configure --prefix=/usr --enable-custom-modes make } package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir" install install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }