blob: 8eb04be7a4d3507e3452fa5ddf9e8d6f08f84312 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Dandraghas <dandraghas at proton dot me>
pkgname=gomerge
pkgver=3.3.0
pkgrel=1
pkgdesc="Gomerge is a tool which allows you to quickly bulk merge, approve and close several pull requests from your terminal."
url="https://github.com/Cian911/gomerge"
makedepends=("go")
license=('MIT')
arch=('any')
source=("git+${url}.git#tag=${pkgver}")
sha256sums=('SKIP')
build() {
cd gomerge
make
}
package() {
install -D gomerge/bin/gomerge "${pkgdir}/usr/bin/gomerge"
}
|