summaryrefslogtreecommitdiff
path: root/community/bcg729
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-05-23 12:45:39 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-05-23 12:45:39 -0300
commit7516400a778a0a4a0668d0a2ea797a635d6d4dd2 (patch)
tree5ab321abf9f41be345f44409235b62ccb31e0d49 /community/bcg729
parent1de77ff2ad96a2adfd9eb797bb2ca1bb15c2a707 (diff)
parent39c366b9fc1b83a741177d0b415a20147a18a3c0 (diff)
Merge branch 'master' of ssh://gparabola/srv/git/abslibre-mips64el
Diffstat (limited to 'community/bcg729')
-rw-r--r--community/bcg729/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/bcg729/PKGBUILD b/community/bcg729/PKGBUILD
new file mode 100644
index 000000000..23cb66cf3
--- /dev/null
+++ b/community/bcg729/PKGBUILD
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=bcg729
+pkgver=1.0.0
+pkgrel=2
+pkgdesc="g729 codec"
+arch=('i686' 'x86_64')
+url="http://www.linphone.org/eng/documentation/dev/bcg729.html"
+license=('GPL')
+depends=('mediastreamer')
+options=('!libtool')
+source=(http://download-mirror.savannah.gnu.org/releases/linphone/plugins/sources/bcg729-$pkgver.tar.gz)
+md5sums=('45e127a9a309aff94d3262d97b5aeab0')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+}