Advertisement
Guest User

Untitled

a guest
Mar 26th, 2018
732
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.77 KB | None | 0 0
  1. # Maintainer: Jonatan Bravo <zephrax@gmail.com>
  2. pkgname=envconsul
  3. pkgver=0.7.3
  4. pkgrel=1
  5. epoch=
  6. pkgdesc="Launch a subprocess with environment variables using data from @HashiCorp Consul and Vault."
  7. arch=("x86_64")
  8. url="https://github.com/hashicorp/envconsul"
  9. license=('MPL-2.0')
  10. groups=()
  11. depends=()
  12. makedepends=()
  13. checkdepends=()
  14. optdepends=()
  15. provides=("envconsul")
  16. source=("https://releases.hashicorp.com/${pkgname}/${pkgver}/envconsul_${pkgver}_linux_amd64.tgz")
  17. sha256sums=("fee1281654a224337a573ac135324fadcd88b19128db424aa5f5562b1236e314")
  18. validpgpkeys=()
  19.  
  20. package() {
  21.         cd "${srcdir}/"
  22.         mkdir -p "${pkgdir}/usr/local/bin"
  23.         install -m755 "${pkgname}" "${pkgdir}/usr/local/bin/${pkgname}"
  24.         chmod +x ${pkgdir}/usr/local/bin/${pkgname}
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement