22 lines
567 B
Bash
22 lines
567 B
Bash
# Template file for 'git-toolbelt'
|
|
pkgname=git-toolbelt
|
|
version=1.7.1
|
|
revision=1
|
|
depends="git moreutils fzf"
|
|
short_desc="Helper tools to make everyday life with Git much easier"
|
|
maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://github.com/nvie/git-toolbelt"
|
|
distfiles="https://github.com/nvie/git-toolbelt/archive/v${version}.tar.gz"
|
|
checksum=388dc5f4536cff9412c8baa8f7e89254add421a039992aed50f09f568b2daf57
|
|
conflicts="git-extras"
|
|
|
|
do_install() {
|
|
for f in git-*
|
|
do
|
|
vbin "$f"
|
|
done
|
|
vlicense LICENSE
|
|
vdoc README.md
|
|
}
|