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