core/farsight2/PKGBUILD

30 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 $
2010-05-17 15:50:50 +08:00
# Maintainer: Ionut Biru <ibiru@archlinux.org>
2010-03-14 23:48:48 +08:00
# Contributor: William Díaz <wdiaz@archlinux.us>
pkgname=farsight2
2010-05-17 15:50:50 +08:00
pkgver=0.0.18
2010-03-14 23:48:48 +08:00
pkgrel=1
pkgdesc="Audio/Video conference software for Instant Messengers"
arch=('i686' 'x86_64')
url="http://farsight.freedesktop.org"
license=('LGPL')
2010-05-17 15:50:50 +08:00
depends=('libnice>=0.0.11' 'gstreamer0.10-base-plugins>=0.10.28' 'gstreamer0.10-python>=0.10.18' 'python>=2.6' 'pygobject>=2.16.0')
2010-03-14 23:48:48 +08:00
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)
2010-05-17 15:50:50 +08:00
sha256sums=('884ced1e495865a0876bbeb133aa33e1ef5981b0bcd17b038ab7f232386c1878')
2010-03-14 23:48:48 +08:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
2010-05-17 15:50:50 +08:00
--with-package-name='Arch Linux farsight2 package' \
--with-package-origin='http://archlinux.org' \
--disable-static -disable-valgrind --disable-debug
2010-03-14 23:48:48 +08:00
make || return 1
make DESTDIR=${pkgdir} install || return 1
}