updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / gitflow-git / PKGBUILD
blobae1b32935d61d97157ff848f49ccb73f0bd384d6
1 # Contributor: delor <bartekpiech@gmail com>
3 pkgname=gitflow-git
4 pkgver=20100406
5 pkgrel=1
6 pkgdesc="Git extensions to provide high-level repository operations for Vincent Driessen's branching model."
7 arch=('i686' 'x86_64')
8 url="http://github.com/nvie/gitflow"
9 license=('BSD')
10 depends=('git')
12 _gitroot="git://github.com/nvie/gitflow.git"
13 _gitname="gitflow"
15 build() {
16     msg "Connecting to GIT server"
18     if [ -d ${srcdir}/$_gitname ] ; then
19         cd ${srcdir}/$_gitname && git pull origin || return 1
20         msg "The local files are updated."
21     else
22         git clone $_gitroot $_gitname || return 1
23     fi
25     msg "GIT checkout done or server timeout"
27     msg "Getting submodule"
29     cd ${srcdir}/${_gitname}
30     git submodule init
31     git submodule update
33     msg "Submodule checkout done or server timeout"
35     msg "Starting make"
37     make prefix=/${pkgdir}/usr install