updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / zeitgeist-dataprovider-firefox / PKGBUILD
blob2ee99f32a2a88963b73b699386307960fffa80b3
1 #Contributor: twa022 <twa022 at gmail dot com>
3 pkgname=zeitgeist-dataprovider-firefox
4 pkgdesc="Zeitgeist dataprovider for firefox"
5 pkgver=137
6 pkgrel=1
7 arch=('i386' 'x86_64')
8 url="https://launchpad.net/zeitgeist-dataproviders"
9 license=('GPL3')
10 depends=('libzeitgeist' 'firefox>=4.0')
11 makedepends=('bzr' 'xulrunner')
13 _bzrmod=zeitgeist-dataproviders
14 _bzrtrunk=http://bazaar.launchpad.net/~zeitgeist-dataproviders/zeitgeist-dataproviders/trunk
16 build() {
17   cd $startdir/src
18   msg "Connecting to the server...."
20   if [ -d ./$_bzrmod ]; then
21     cd ./$_bzrmod && bzr up && cd ..
22   else
23     bzr co --lightweight $_bzrtrunk $_bzrmod
24   fi
25   
26   cp -r $_bzrmod $_bzrmod-build
27   cd $_bzrmod-build
28   
29   ./autogen.sh --prefix=/usr
30   cd firefox-40-libzg
31   make
32   make DESTDIR=$pkgdir install
33