PKGBUILDs/extra/farsight2/PKGBUILD
2009-10-09 21:23:22 -05:00

31 lines
1.1 KiB
Bash

# $Id: PKGBUILD 2058 2009-09-07 21:22:13Z ibiru $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Biru Ionut <biru.ionut at gmail.com>
# Contributor: William Díaz <wdiaz@archlinux.us>
pkgname=farsight2
pkgver=0.0.16
pkgrel=1
pkgdesc="Audio/Video conference software for Instant Messengers"
arch=('i686' 'x86_64')
url="http://farsight.freedesktop.org"
license=('LGPL')
depends=('libnice>=0.0.9' 'gstreamer0.10-base-plugins>=0.10.22'
'gstreamer0.10-python>=0.10.10' 'python>=2.6' 'pygobject>=2.16.0')
optdepends=('gstreamer0.10-good>=0.10.7: for RTP plugin'
'gstreamer0.10-bad>=0.10.12: for RTP plugin')
options=('!libtool' '!emptydirs')
source=(http://farsight.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
md5sums=('ca6261e19cfcfe8a6e5e51b8c2f5ad16')
build() {
export CFLAGS="$CFLAGS -fno-strict-aliasing"
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--disable-static \
--disable-debug \
--disable-valgrind
make || return 1
make DESTDIR=${pkgdir} install || return 1
}