diff options
Diffstat (limited to 'abs/extra/opus/PKGBUILD')
-rw-r--r-- | abs/extra/opus/PKGBUILD | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/abs/extra/opus/PKGBUILD b/abs/extra/opus/PKGBUILD deleted file mode 100644 index 9236886..0000000 --- a/abs/extra/opus/PKGBUILD +++ /dev/null @@ -1,34 +0,0 @@ -# $Id$ -# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> -# Contributor: Jan de Groot <jgc@archlinux.org> -# Contributor: DrZaius <lou[at]fakeoutdoorsman[dot]com> -# Contributor: pumbur - -pkgname=opus -pkgver=1.0.3 -pkgrel=1 -pkgdesc="Codec designed for interactive speech and audio transmission over the Internet" -arch=(i686 x86_64) -url="http://www.opus-codec.org/" -license=(BSD) -depends=(glibc) -options=('!libtool') -source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('86eedbd3c5a0171d2437850435e6edff') - -build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr --enable-custom-modes - make -} - -check() { - cd $pkgname-$pkgver - make check -} - -package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install - install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} |