updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git] / libproxy-svn / PKGBUILD
blob9852a630795e68e304146cf633d3a11ab0443977
1 # Maintainer: Will Chappell <mr.chapendi@gmail.com>
3 pkgname=libproxy-svn
4 pkgver=401
5 pkgrel=1
6 pkgdesc="A library that provides automatic proxy configuration management"
7 arch=('i686' 'x86_64')
8 license=('LGPL')
9 depends=('dbus-core')
10 makedepends=('subversion')
11 provides=('libproxy')
12 url="http://libproxy.googlecode.com"
13 source=()
14 conflicts=('libproxy')
15 md5sums=()
16 options=('!libtool' '!emptydirs')
18 _svntrunk=http://libproxy.googlecode.com/svn/trunk/
19 _svnmod=libproxy-read-only
21 build() {
22   # Check out from svn.
23   cd "${srcdir}"
24   if [ -d $_svnmod/.svn ]; then
25     (cd $_svnmod && svn up -r $pkgver)
26   else
27     svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
28   fi
29   msg "SVN checkout done or server timeout"
30   msg "Starting make..."
32   # Actual build.
33   cd $_svnmod
34   ./autogen.sh
35   ./configure --prefix=/usr --without-mozjs || return 1
36   make || return 1
37   make DESTDIR="${pkgdir}" install || return 1