diff options
Diffstat (limited to 'pcr/bcg729/PKGBUILD')
-rw-r--r-- | pcr/bcg729/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/pcr/bcg729/PKGBUILD b/pcr/bcg729/PKGBUILD new file mode 100644 index 000000000..271bcc3fc --- /dev/null +++ b/pcr/bcg729/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: David P. <megver83@parabola.nu> +# Maintainer: Christian Kohlstedde <christian+arch-pkg@kohlsted.de> +# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=bcg729 +pkgver=1.0.4 +pkgrel=1 +pkgdesc="g729 codec" +arch=('x86_64' 'i686' ''armv7h) +url="http://www.linphone.org/eng/documentation/dev/bcg729.html" +license=('GPL') +depends=('glibc') +validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985') +source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/bcg729/archive/$pkgver.tar.gz") +sha256sums=('94b3542a06cbd96306efc19f959f9febae62806a22599063f82a8c33e989d48b') + +build() { + cd $pkgname-$pkgver + [ -x configure ] || ./autogen.sh + ./configure --prefix=/usr --disable-strict + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir/" install + install -dm0755 "$pkgdir/usr/include/bcg729" + cp include/bcg729/*.h "$pkgdir/usr/include/bcg729" +} |