blob: 3678205e4e1cfe68efff6e875367e5d1f31a7faa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Bart Louwers <sleeping@emeel.net>
pkgname=multi-git-status
pkgver=2.2
pkgrel=1
pkgdesc='Show uncommited, untracked and unpushed changes in multiple Git repositories.'
arch=('any')
url='https://github.com/fboender/multi-git-status'
license=('MIT')
source=("https://github.com/fboender/$pkgname/archive/$pkgver.tar.gz")
md5sums=('3135e32e3fdf065ef54acf38470effe9')
package() {
cd "$pkgname-$pkgver"
install -d "$pkgdir"/usr/bin/
install -d "$pkgdir"/usr/share/man/man1/
install mgitstatus "$pkgdir"/usr/bin/
install mgitstatus.1 "$pkgdir"/usr/share/man/man1/
install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|