26 lines
621 B
Bash
26 lines
621 B
Bash
# Template file for 'go-jira'
|
|
pkgname=go-jira
|
|
version=1.0.16
|
|
revision=1
|
|
build_style=go
|
|
hostmakedepends="dep"
|
|
short_desc="Simple jira command line client in Go"
|
|
maintainer="Andrea Brancaleoni <abc@pompel.me>"
|
|
license="Apache"
|
|
go_import_path="github.com/Netflix-Skunkworks/go-jira"
|
|
go_package="$go_import_path/cmd/jira"
|
|
homepage="https://$go_import_path"
|
|
distfiles="$homepage/archive/v$version.tar.gz"
|
|
checksum=40cb52174a4a5104278152337845907b61501c52e5ed203b4e8cf7a1ebf9ba49
|
|
|
|
pre_build() {
|
|
git config --global http.https://gopkg.in.followRedirects true
|
|
|
|
cd $GOSRCPATH
|
|
dep ensure
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|