summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8d4aa22db5b2f2472a8c59fdfd6ecc774dd564ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Maintainer: Dasith Gunawardhana <dasith.gunawardhana@gmail.com>

_pkgname=consul
pkgname=${_pkgname}-git
pkgver=v1.5.0_5_g5508fd164
pkgrel=1
pkgdesc="Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure."
arch=('x86_64')
url="https://www.consul.io/"
license=('MPL2')
depends=('glibc')
makedepends=('go' 'git')
conflicts=("${_pkgname}")
provides=("${_pkgname}")
source=("git+https://github.com/hashicorp/consul.git")
sha256sums=('SKIP')

pkgver() {
  cd ${_pkgname}
  git describe | sed 's/[- ]/_/g'
}

prepare() {
  cd ${_pkgname}
  make tools
}

build() {
  cd ${_pkgname}
  make dev
}

check() {
  cd ${_pkgname}
  make test
}

package() {
  cd ${_pkgname}
  install -Dm755 bin/consul "$pkgdir"/usr/bin/consul
  install -m644 -D LICENSE "$pkgdir/usr/share/licenses/consul/LICENSE"
}