blob: 9652c092504b61dbae1b439083aae52bc9d030f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# 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=2
pkgdesc="A Voice-over-IP phone"
arch=('x86_64')
arch+=('i686' 'armv7h')
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
}
|