updated on Thu Jan 19 00:16:31 UTC 2012
[aur-mirror.git] / libwpad-svn / PKGBUILD
blob4a4fd6756268fd743ed2b34953a8d56e4fb005ac
1 # Contributor: nesl247 <nesl247@gmail.com>
3 pkgname=libwpad-svn
4 pkgver=23
5 pkgrel=2
6 pkgdesc="Library, bindings and command-line utilities to automatically detect \
7         and configure client proxy settings"
8 arch=(i686)
9 url="http://code.google.com/p/wpad"
10 license=('LGPL')
11 depends=('xulrunner' 'python>=2.4.0' 'nspr')
12 makedepends=('subversion' 'libtool' 'pkgconfig')
13 provides=('libwpad')
14 conflicts=('spidermonkey')
15 source=()
16 md5sums=()
17 _svntrunk=http://wpad.googlecode.com/svn/trunk/
18 _svnmod=libwpad
20 build() {
21   # start building
22   cd $startdir/src
24   if [ -d $_svnmod/.svn ]; then
25     (cd $_svnmod && svn up)
26   else
27     svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
28   fi
30   msg "SVN checkout done or server timeout"
31   msg "Starting make..."
33   cp -r $_svnmod $_svnmod-build
34   cd $_svnmod-build
36   sed -i -e 's|firefox-js|xulrunner-js|g' configure.ac
37   autoreconf -i || return 1
39   ./configure --prefix=/usr
40   make LDFLAGS+="-R /opt/mozilla/lib/xulrunner" || return 1
41   make DESTDIR=$startdir/pkg install || return 1
42   
43   rm -rf $startdir/src/$_svnmod-build