updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / pbfetch-git / PKGBUILD
blob3940fe7083158811db3ee96e59f0e3051a17f643
1 # Contributor: Erik Hardesty <dalingrin@gmail.com>
2 pkgname=pbfetch-git
3 _pkgname=pbfetch
4 pkgver=20110913
5 pkgrel=1
6 pkgdesc="A simple script for Arch linux to simplify AUR package management"
7 arch=('any')
8 url=('http://github.com/dalingrin/pbfetch')
9 license=('GPL')
10 depends=('sudo' 'wget' 'curl')
11 optdepends=('pacman-color: matches output if color is used')
12 makedepends=('git')
13 backup=('etc/pbfetch.conf')
15 _gitroot="git://github.com/dalingrin/pbfetch.git"
16 _gitname="pbfetch"
18 build() {
19   cd "$srcdir"
20   msg "Connecting to GIT server...."
21   
22   if [[ -d $_gitname ]]; then
23     cd $_gitname && git pull origin
24     msg "The local files are updated."
25   else     
26     git clone $_gitroot && cd $_gitname
27   fi
29   install -D -m644 ./config/$_pkgname.conf $pkgdir/etc/$_pkgname.conf || return 1 
30   install -D -m755 ./$_pkgname $pkgdir/usr/bin/$_pkgname || return 1
31