diff options
author | David P <megver83@parabola.nu> | 2018-04-20 13:14:30 -0300 |
---|---|---|
committer | David P <megver83@parabola.nu> | 2018-04-20 13:14:30 -0300 |
commit | 67bd585c4b63a549617ca54e42a0ccd3f6527165 (patch) | |
tree | 36bb017efa98155e455ca648802316bc0c1f7ae4 /pcr/linphone/PKGBUILD | |
parent | 5cfe5fdd4f0b1df73c6b4ca644d035d001824dcb (diff) | |
download | abslibre-67bd585c4b63a549617ca54e42a0ccd3f6527165.tar.gz abslibre-67bd585c4b63a549617ca54e42a0ccd3f6527165.tar.bz2 abslibre-67bd585c4b63a549617ca54e42a0ccd3f6527165.zip |
add [pcr] package: linphone
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'pcr/linphone/PKGBUILD')
-rw-r--r-- | pcr/linphone/PKGBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/pcr/linphone/PKGBUILD b/pcr/linphone/PKGBUILD new file mode 100644 index 000000000..29154cb68 --- /dev/null +++ b/pcr/linphone/PKGBUILD @@ -0,0 +1,41 @@ +# Maintainer: David P. <megver83@parabola.nu> +# Maintainer (AUR): Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Darwin Bautista <djclue917@gmail.com> +# Contributor: Mark Lee <mark@markelee.com> + +pkgname=linphone +pkgver=3.12.0 +pkgrel=1 +pkgdesc="A Voice-over-IP phone" +arch=('x86_64') +url="http://www.linphone.org" +license=('GPL') +depends=('alsa-lib' 'ffmpeg' 'gtk2' 'speex' 'libv4l' 'libglade' 'v4l-utils' + 'libpulse' 'libxv' 'mediastreamer' 'ortp' 'bzrtp' 'bcg729' 'libsoup' + 'belle-sip' 'libnotify' 'libldap') +makedepends=('pkg-config' 'perl-xml-parser' 'intltool' 'sgml-common' 'bcunit') +optdepends=('pulseaudio') +options=('!emptydirs') +install=linphone.install +source=("$pkgname-$pkgver.tar.gz::https://github.com/BelledonneCommunications/linphone/archive/$pkgver.tar.gz") +sha256sums=('60fb1e5d25823fecc7ce1955ce7e886e013118a184df1965d1877ffe6cc171b7') + +build() { + cd $pkgname-$pkgver + export CFLAGS="$CFLAGS -DMS2_GIT_VERSION="'"unknown"' + touch coreapi/gitversion.h + ./autogen.sh + ./configure --prefix=/usr --disable-static --enable-ipv6 --enable-video \ + --enable-alsa --enable-pulseaudio --disable-artsc --disable-strict \ + --libexecdir=/usr/lib/$pkgname \ + --enable-external-mediastreamer \ + --enable-external-ortp \ + --enable-zrtp \ + --enable-ldap + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install +} |