# $Id: PKGBUILD 178389 2013-02-21 05:32:58Z heftig $ # Maintainer: Jan de Groot pkgname=ptlib pkgver=2.10.10 pkgrel=1 pkgdesc="Portable Windows Library" arch=('i686' 'x86_64' 'mips64el') url="http://www.opalvoip.org" license=('GPL') depends=('sdl' 'libpulse' 'v4l-utils' 'libldap') replaces=('pwlib') conflicts=('pwlib') source=(http://ftp.gnome.org/pub/GNOME/sources/ptlib/${pkgver%.*}/ptlib-$pkgver.tar.xz) sha256sums=('7fcaabe194cbd3bc0b370b951dffd19cfe7ea0298bfff6aecee948e97f3207e4') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --libdir=/usr/lib \ --sysconfdir=/etc --localstatedir=/var \ --enable-opal --enable-plugins \ --enable-oss --enable-v4l2 \ --disable-avc --enable-sdl \ --enable-ipv6 --enable-v4l \ --disable-dc --disable-odbc \ --enable-expat --enable-httpforms make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install }