summaryrefslogtreecommitdiff
path: root/extra/opus
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-10-09 00:33:26 -0700
committerroot <root@rshg054.dnsready.net>2012-10-09 00:33:26 -0700
commit965fe5dd2bc0fae6b53c10d880c15f494dd589ac (patch)
tree910883dffa913262b28fb7a0e3bc41c3325b1dd2 /extra/opus
parent962d1e81a62d7259ccb686da1a44de2bb28e73a5 (diff)
Tue Oct 9 00:33:25 PDT 2012
Diffstat (limited to 'extra/opus')
-rw-r--r--extra/opus/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/opus/PKGBUILD b/extra/opus/PKGBUILD
new file mode 100644
index 000000000..c250b548d
--- /dev/null
+++ b/extra/opus/PKGBUILD
@@ -0,0 +1,28 @@
+# Maintainer: Jan de Groot <jgc@archlinux.org>
+# Contributor: DrZaius <lou[at]fakeoutdoorsman[dot]com>
+# Contributor: pumbur
+
+pkgname=opus
+pkgver=1.0.1
+pkgrel=2
+pkgdesc="codec designed for interactive speech and audio transmission over the Internet"
+arch=('i686' 'x86_64')
+url="http://www.opus-codec.org/"
+license=('custom')
+depends=('glibc')
+source=("http://downloads.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz")
+options=('!libtool')
+md5sums=('bbac19996957b404a1139816e2f357f5')
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make DESTDIR=${pkgdir} install
+ install -m755 -d "${pkgdir}/usr/share/licenses/opus"
+ install -m644 COPYING "${pkgdir}/usr/share/licenses/opus/"
+}