summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6da72e6ae8c9d78b75bc31d1a9122f62883afcfa (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
# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>

pkgname=hoverfly-git
pkgver=1.3.0
pkgrel=1
pkgdesc="Lightweight service virtualization/API simulation tool for developers and testers"
arch=('x86_64')
url='https://hoverfly.io'
license=('Apache')
provides=('hoverfly')
conflicts=('hoverfly-bin' 'hoverfly')
depends=('glibc')
makedepends=('go' 'git')
source=("${pkgname%-git}::git+https://github.com/SpectoLabs/hoverfly")
sha256sums=('SKIP')

prepare() {
  cd hoverfly
  mkdir -p build/
}

build() {
  cd hoverfly
  export CGO_LDFLAGS="${LDFLAGS}"
  export CGO_CFLAGS="${CFLAGS}"
  export CGO_CPPFLAGS="${CPPFLAGS}"
  export CGO_CXXFLAGS="${CXXFLAGS}"
  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
  go build -o build ./...
}

package() {
  cd hoverfly
  install -Dm755 build/hoverctl -t "${pkgdir}/usr/bin"
  install -Dm755 build/hoverfly -t "${pkgdir}/usr/bin"
}