updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / superswitcher-svn / PKGBUILD
blobc38f8fc5658a01d43dbfd2ad1b13639607f63b2f
1 # Contributor:  Steven She <mintcoffee@gmail.com>
2 pkgname=superswitcher-svn
3 pkgver=37
4 pkgrel=1
5 pkgdesc="A more featureful replacement of the Alt-Tab window switching behavior.\
6 This will checkout and package the latest SVN version."
7 arch=(i686 x86_64)
8 license="GPL"
9 url="http://code.google.com/p/superswitcher/"
10 depends=('gconf' 'libwnck')
11 makedepends=('automake' 'autoconf' 'intltool' 'subversion')
12 provides=('superswitcher')
13 source=()
14 md5sums=()
15 _svntrunk=http://superswitcher.googlecode.com/svn/trunk/ 
16 _svnmod=superswitcher-read-only
18 build() {
19   cd $startdir/src
21   if [ -d $_svnmod/.svn ]; then
22     (cd $_svnmod && svn up -r $pkgver)
23   else
24     svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
25   fi
27   msg "SVN checkout done or server timeout"
28   msg "Starting make..."
30   cp -r $_svnmod $_svnmod-build
31   cd $_svnmod-build
33   ./autogen.sh --prefix=/usr
34   make || return 1
35   make prefix=$startdir/pkg/usr install
37   rm -rf $startdir/src/$_svnmod-build
39 # vim:syntax=sh