20 lines
548 B
Bash
20 lines
548 B
Bash
# Template file for 'atlantis'
|
|
pkgname=atlantis
|
|
version=0.8.3
|
|
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.org>"
|
|
license="Apache-2.0"
|
|
homepage="https://runatlantis.io"
|
|
distfiles="https://github.com/runatlantis/atlantis/archive/v${version}.tar.gz"
|
|
checksum=26304b0510544ec883f0bb08f7c60794062b4930e6cbaa3396f6d0e66aa813e0
|
|
|
|
pre_build() {
|
|
cd $GOSRCPATH
|
|
dep ensure
|
|
go generate
|
|
}
|