21 lines
548 B
Bash
21 lines
548 B
Bash
# Template file for 'atlantis'
|
|
pkgname=atlantis
|
|
version=0.5.1
|
|
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=4c0615e4979c9bda4343043056667bd14dcb3dc829e4bfd37ed04e00edb71fbb
|
|
|
|
pre_build() {
|
|
cd $GOSRCPATH
|
|
dep ensure
|
|
go generate
|
|
}
|