diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/celt |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/celt')
-rw-r--r-- | community/celt/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community/celt/PKGBUILD b/community/celt/PKGBUILD new file mode 100644 index 000000000..5eb99975d --- /dev/null +++ b/community/celt/PKGBUILD @@ -0,0 +1,33 @@ +# Maintainer: Thomas Dziedzic < gostrc at gmail > +# Contributor: Lauri Niskanen <ape@ape3000.com> +# Contributor: Ray Rashif <schivmeister@gmail.com> + +pkgname=celt +pkgver=0.11.1 +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.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('94fe4acd241da8702c295bcd13a555e6') + +build() { + cd ${pkgname}-${pkgver} + + ./configure \ + --prefix=/usr + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install + + install -D -m644 COPYING \ + ${pkgdir}/usr/share/licenses/${pkgname}/BSD +} |