updated on Sun Jan 15 08:01:04 UTC 2012
[aur-mirror.git] / git-goggles-git / PKGBUILD
blobe4d2e930ced7d22c282023d590af145cdbb7075e
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # See http://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines
7 # for more information on packaging from GIT sources.
9 # Maintainer: Your Name <youremail@domain.com>
10 pkgname=git-goggles-git
11 pkgver=20111124
12 pkgrel=1
13 pkgdesc="git management utilities"
14 arch=('any')
15 url="https://github.com/nowells/git-goggles"
16 license=('MIT')
17 depends=('python2')
18 makedepends=('git')
19 options=(!emptydirs)
20 install=
21 source=()
22 noextract=()
23 md5sums=() #generate with 'makepkg -g'
25 _gitroot=git://github.com/nowells/git-goggles.git
26 _gitname=git-goggles
28 build() {
29   cd "$srcdir"
30   msg "Connecting to GIT server...."
32   if [[ -d "$_gitname" ]]; then
33     cd "$_gitname" && git pull origin
34     msg "The local files are updated."
35   else
36     git clone "$_gitroot" "$_gitname"
37   fi
39   msg "GIT checkout done or server timeout"
40   msg "Starting build..."
42   rm -rf "$srcdir/$_gitname-build"
43   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
44   cd "$srcdir/$_gitname-build"
48 package() {
49   cd "$srcdir/$_gitname-build"
50   python2 setup.py install --root="$pkgdir/" --optimize=1
51   mkdir -p $pkgdir/usr/share/licenses/$pkgname
52   cp $srcdir/$_gitname-build/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
55 # vim:set ts=2 sw=2 et: