updated on Sat Jan 14 00:11:12 UTC 2012
[aur-mirror.git] / gof-git / PKGBUILD
blob02522c96aeb4e750697872678fdfe48a48e16131
1 # See http://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines
2 # for more information on packaging from GIT sources.
4 # Contributor: Your Name <mainiak at gmail dot com>
5 pkgname=gof-git
6 pkgver=20100707
7 pkgrel=1
8 pkgdesc="Git One File - RCS inspirated git wrapper"
9 arch=('any')
10 url="http://code.koudynet.eu/p/gof/"
11 license=('BSD')
12 groups=()
13 depends=('bash' 'git')
14 makedepends=('git')
15 provides=()
16 conflicts=()
17 replaces=()
18 backup=()
19 options=()
20 install=
21 source=()
22 noextract=()
23 md5sums=() #generate with 'makepkg -g'
25 _gitroot="git://code.koudynet.eu/gof.git "
26 _gitname="gof-git"
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 make..."
42   rm -rf "$srcdir/$_gitname-build"
43   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
44   cd "$srcdir/$_gitname-build"
46   #
47   # BUILD HERE
48   #
50   set -x
51   mkdir -p "$pkgdir/usr/bin/"
52   install -m775 "$srcdir/$_gitname-build/gof.sh" "$pkgdir/usr/bin/gof"