# Maintainer: Jörn Hofmann # Contributor: Radoslaw Mejer pkgname="git-toolbelt" pkgver=1.9.0 pkgrel=1 pkgdesc="A suite of useful Git commands that aid with scripting or every day command line usage" arch=(any) license=('BSD') url="https://github.com/nvie/git-toolbelt" depends=('coreutils>=2.9' 'git') source=( "git-toolbelt-$pkgver.zip::https://github.com/nvie/git-toolbelt/archive/v$pkgver.tar.gz" ) sha256sums=( "50f743ddefbc8d015880d6476e00f7fc319a909ff4beb69dd8d777fc8277e085" ) package() { install -d "$pkgdir/usr/bin" install -Dm755 "$srcdir"/git-toolbelt-$pkgver/git-* "$pkgdir/usr/bin/" install -Dm644 "$srcdir/git-toolbelt-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }