20 lines
549 B
Bash
20 lines
549 B
Bash
# Template file for 'atlantis'
|
|
pkgname=atlantis
|
|
version=0.4.15
|
|
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=d9890451453285986ea6d836bf8c45be3643be104f8e98e8763a4b44e6f91b0d
|
|
|
|
pre_build() {
|
|
cd $GOSRCPATH
|
|
dep ensure
|
|
go generate
|
|
}
|