updated on Sun Jan 15 16:02:00 UTC 2012
[aur-mirror.git] / pylast-svn / PKGBUILD
blob3c04f92ad13ec95d6e19ac5b96b376270fbc834e
1 # Contributor: superbobry <superbobry@gmail.com>
2 # Contributor: Amr Hassan <amr.hassan@gmail.com>
4 pkgname=pylast-svn
5 pkgver=1    # Automatically updated
6 pkgrel=1
7 pkgdesc="A Python interface to the Last.fm (and other compatible websites) API"
8 url="http://code.google.com/p/pylast/"
9 arch=('i686' 'x86_64')
10 license=('APACHE')
11 depends=('python')
12 makedepends=('subversion')
13 conflicts=('pylast' 'pylast-0.3.4')
14 provides=('pylast')
16 source=()
17 md5sums=()
19 _svntrunk=http://pylast.googlecode.com/svn/trunk/
20 _svnmod=pylast
22 build() {
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
30   msg "SVN checkout done or server timeout"
31   cd ${_svnmod}
32   python setup.py install --root=$startdir/pkg || return 1