updated on Mon Jan 16 20:00:43 UTC 2012
[aur-mirror.git] / packer / PKGBUILD
blob6fb60bcb4764d0179dee42bde7c6b7a137674e81
1 pkgname=packer
2 pkgver=20110729
3 pkgrel=1
4 pkgdesc="Bash wrapper for pacman and aur"
5 url="http://github.com/bruenig/packer"
6 license="GPL"
7 arch=('any')
8 makedepends=('git')
9 depends=('grep' 'sed' 'bash' 'curl' 'pacman' 'jshon')
10 optdepends=('sudo: install and update packages as non-root'
11             'customizepkg: apply customizepkg modifications')
12 _gitroot='http://github.com/bruenig/packer.git'
13 _gitname='packer'
15 build() {
16     cd "$startdir/src"
17   
18     msg "Connecting to github GIT server...."
19     
20     if [ -d "$startdir/src/$_gitname" ] ; then
21         cd $_gitname && git pull origin
22     else
23         git clone "$_gitroot"
24         cd $_gitname
25     fi
26       
27     mkdir -p "$startdir/pkg/usr/bin/"
28     mkdir -p "$startdir/pkg/usr/share/man/man8/"
29     install -m 755 packer "$startdir/pkg/usr/bin/packer"
30     install -m 644 packer.8 "$startdir/pkg/usr/share/man/man8/packer.8"