21 lines
548 B
Bash
21 lines
548 B
Bash
# Template file for 'atlantis'
|
|
pkgname=atlantis
|
|
version=0.4.11
|
|
revision=1
|
|
build_style=go
|
|
go_import_path="github.com/runatlantis/atlantis"
|
|
hostmakedepends="dep"
|
|
depends="terraform"
|
|
short_desc="Terraform Automation By Pull Request"
|
|
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
|
license="Apache-2.0"
|
|
homepage="https://runatlantis.io"
|
|
distfiles="https://github.com/runatlantis/atlantis/archive/v$version.tar.gz"
|
|
checksum=d76e17ef02895d56b4b56a7a40331c6c37623477108e01887952a2d4af663b82
|
|
|
|
pre_build() {
|
|
cd $GOSRCPATH
|
|
dep ensure
|
|
go generate
|
|
}
|