updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / wcat-svn / PKGBUILD
blobb0056a99f3991cb6887ba1181b5786ba901ee922
1 # Contributor: Shawn Dellysse <sdellysse@radford.edu>
3 pkgname=wcat-svn
4 pkgver=30
5 pkgrel=1
6 pkgdesc='A wrapper around /bin/cat which calls 'which' on each argument'
7 url='http://code.google.com/p/sdellysse/'
8 arch=('i686' 'x86_64')
9 license=('GPL')
10 depends=('bash' 'which' 'coreutils')
11 makedepends=('subversion')
12 conflicts=('wcat')
13 provides=('wcat')
15 source=()
16 md5sums=()
18 _svntrunk=http://sdellysse.googlecode.com/svn/trunk/wcat
19 _svnmod=wcat
21 build(){
22   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   
32   install -d -m755 $pkgdir/usr/bin
33   install -m755 $srcdir/$_svnmod/wcat $pkgdir/usr/bin