mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
31 lines
986 B
Bash
31 lines
986 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Maintainer: Darwin Bautista <djclue917@gmail.com>
|
||
|
# Contributor: Darwin Bautista <djclue917@gmail.com>
|
||
|
|
||
|
pkgname=linphone
|
||
|
pkgver=3.1.2
|
||
|
pkgrel=3
|
||
|
pkgdesc="A Voice-over-IP phone"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.linphone.org/index.php/eng"
|
||
|
license=('GPL')
|
||
|
depends=('alsa-lib' 'ffmpeg' 'gtk2' 'libexosip2' 'speex')
|
||
|
makedepends=('pkgconfig' 'perlxml' 'intltool')
|
||
|
conflicts=(ortp)
|
||
|
provides=(ortp)
|
||
|
options=('!libtool' '!emptydirs')
|
||
|
source=(http://mirror.cinquix.com/pub/savannah/linphone/stable/sources/linphone-$pkgver.tar.gz)
|
||
|
md5sums=('f0a6e48a2b3cf276f78f8499444be732')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
|
||
|
export PKG_CONFIG=/usr/bin/pkg-config
|
||
|
|
||
|
./configure --prefix=/usr --disable-static --enable-ipv6 --enable-video \
|
||
|
--enable-alsa --disable-artsc --disable-strict --libexecdir=/usr/lib/$pkgname
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install || return 1
|
||
|
}
|