22 lines
567 B
Bash
22 lines
567 B
Bash
# Template file for 'git-toolbelt'
|
|
pkgname=git-toolbelt
|
|
version=1.8.0
|
|
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=8c504a66715efe2fa544b54b464881b5575201d94a3ff31c21934b23c16bda31
|
|
conflicts="git-extras"
|
|
|
|
do_install() {
|
|
for f in git-*
|
|
do
|
|
vbin "$f"
|
|
done
|
|
vlicense LICENSE
|
|
vdoc README.md
|
|
}
|