2013-03-26 15:54:02 +00:00
|
|
|
# Template file for 'gitflow'
|
|
|
|
pkgname=gitflow
|
2014-06-09 05:52:20 +00:00
|
|
|
version=20140609
|
|
|
|
revision=1
|
2014-01-01 15:10:11 +00:00
|
|
|
noarch="yes"
|
2014-06-09 05:52:20 +00:00
|
|
|
hostmakedepends="perl"
|
2014-01-01 15:10:11 +00:00
|
|
|
depends="git"
|
2013-03-26 15:54:02 +00:00
|
|
|
short_desc="Git extensions to provide high-level repository operations"
|
2014-06-08 09:52:36 +00:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2013-03-26 15:54:02 +00:00
|
|
|
license="Liberal BSD"
|
|
|
|
homepage="https://github.com/nvie/gitflow"
|
|
|
|
|
|
|
|
do_fetch() {
|
|
|
|
git clone git://github.com/nvie/gitflow.git ${pkgname}-${version}
|
|
|
|
cd ${pkgname}-${version}
|
2014-06-09 05:52:20 +00:00
|
|
|
git submodule init
|
|
|
|
git submodule update
|
2013-03-26 15:54:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_build() {
|
|
|
|
make ${makejobs} PREFIX=/usr
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
mkdir -p ${DESTDIR}
|
|
|
|
make install prefix=${DESTDIR}/usr
|
|
|
|
}
|