updated on Sat Jan 14 12:12:45 UTC 2012
[aur-mirror.git] / parcelle-svn / PKGBUILD
blobebb262f9f96fedd89672a5e6fe422c3c571bfe18
2 pkgname=parcelle-svn
3 pkgver=24
4 pkgrel=1
5 pkgdesc="Python/PyGTK application that captures and saves clipboard history."
6 url='http://code.google.com/p/xyhthyx/'
7 license='GPL'
8 depends=('pygtk')
9 makedepends=('subversion')
10 conflicts=('parcelle')
11 provides=('parcelle')
12 arch=(i686 x86_64)
14 source=()
15 md5sums=()
17 _svntrunk=http://xyhthyx.googlecode.com/svn/trunk/
18 _svnmod=xyhthyx
20 build() {
21   cd $startdir/src
23   if [ -d $_svnmod/.svn ]; then
24     (cd $_svnmod && svn up -r $pkgver)
25   else
26     svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
27   fi
29   msg "SVN checkout done or server timeout"
30   msg "Starting build..."
31   
32   cd $startdir/src/$_svnmod/parcelle
33   chmod +x 'setup.py'
34   ./setup.py install --prefix=/usr --root=$startdir/pkg
36 # vim:syntax=sh