blob: 2ef6f4d66bd2b51a32b4c3c62ccc7c2a09ab7d8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
pkgname=multi-gitter
pkgver=0.57.1
pkgdesc='Update multiple repositories in with one command'
pkgrel=1
arch=('x86_64')
url='https://github.com/lindell/multi-gitter'
source=("$pkgname-$pkgver.tar.gz::https://github.com/lindell/multi-gitter/archive/refs/tags/v${pkgver}.tar.gz")
depends=()
makedepends=('go')
b2sums=('c161c3373dfa35eceaf2fb44577e599354d1ee781d67c7d216cb2e04e290f6c4d7ff694c0c582dc26a5a4626ebfc3c5fc43eb837bc14e72714a05218ee0c1909')
license=('Apache')
build(){
cd "$srcdir/$pkgname-$pkgver"
GO111MODULE=on go build -o "$srcdir/bin/multi-gitter"
}
package() {
cd "$srcdir/bin"
install -Dm755 'multi-gitter' "$pkgdir/usr/bin/multi-gitter"
}
|