blob: e400776b23fa7f209cf5d2c6e66353fd531a97cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pkgname=git-xargs
_pkgname=git-xargs
pkgver=0.0.10
pkgdesc='git-xargs is a command-line tool (CLI) for making updates across multiple Github repositories with a single command.'
pkgrel=1
arch=('i686' 'x86_64')
url='https://github.com/gruntwork-io/git-xargs'
source=("https://github.com/gruntwork-io/git-xargs/archive/refs/tags/v${pkgver}.tar.gz")
depends=()
makedepends=('go')
sha256sums=('890e2105ef62117849fdf740d753b6b436b2989a108054913ebeb6b0d93218eb')
license=('Apache')
build(){
cd "$srcdir/$pkgname-$pkgver"
GO111MODULE=on go build -o "$srcdir/bin/git-xargs"
}
package() {
cd "$srcdir/bin"
install -Dm755 'git-xargs' "$pkgdir/usr/bin/git-xargs"
}
|