core/farsight2/PKGBUILD

35 lines
1.1 KiB
Bash
Raw Normal View History

2010-03-14 23:48:48 +08:00
# $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.17
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.10' 'gstreamer0.10-base-plugins>=0.10.25'
'gstreamer0.10-python>=0.10.17' 'python>=2.6' 'pygobject>=2.16.0')
optdepends=('gstreamer0.10-good: for RTP plugin'
'gstreamer0.10-bad: for RTP plugin')
options=('!libtool' '!emptydirs')
source=(http://farsight.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
md5sums=('b109d133d39dd682a224a47e31c5eac7')
build() {
export CFLAGS="$CFLAGS -fno-strict-aliasing"
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--with-package-name='Arch Linux farsight2 package' \
--with-package-origin='http://archlinux.org' \
--disable-static \
--disable-valgrind \
--disable-debug
make || return 1
make DESTDIR=${pkgdir} install || return 1
}