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