diff options
author | David P <megver83@parabola.nu> | 2018-04-20 11:54:34 -0300 |
---|---|---|
committer | David P <megver83@parabola.nu> | 2018-04-20 11:54:34 -0300 |
commit | b28e50c1f95bc663a4b85d43a3d4bc0b1a19c9bb (patch) | |
tree | 378def14f1494e00f6f9e883a9719abbacd64a2e /pcr/bcg729/PKGBUILD | |
parent | 491b9654cc7d7a5113b29099208ebc297fbe469f (diff) | |
download | abslibre-b28e50c1f95bc663a4b85d43a3d4bc0b1a19c9bb.tar.gz abslibre-b28e50c1f95bc663a4b85d43a3d4bc0b1a19c9bb.tar.bz2 abslibre-b28e50c1f95bc663a4b85d43a3d4bc0b1a19c9bb.zip |
add new [pcr] packages: belle-sip and bcg729
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" +} |