desktop/bcg729/PKGBUILD
2015-07-22 23:09:05 +02:00

23 lines
652 B
Bash

# Arch contribution https://www.archlinux.org/packages/community/x86_64/bcg729/
pkgname=bcg729
pkgver=1.0.0
pkgrel=1
pkgdesc="g729 codec"
arch=('x86_64')
url="http://www.linphone.org/eng/documentation/dev/bcg729.html"
license=('GPL')
depends=('mediastreamer')
source=(http://download-mirror.savannah.gnu.org/releases/linphone/plugins/sources/$pkgname-$pkgver.tar.gz)
sha512sums=('015f18ce485e53f74879c762ed520ae37cdefcb18a445c3c00eae432b3506c41c8d13a68e2d70c9d134270269d92ed3ddb36026fc59c71de955ebac25fcbcebf')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir/" install
}