summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 486388c3b6983df80d0e5e01889920c62dccf63b (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
# $Id: PKGBUILD 110816 2014-05-07 16:32:16Z arodseth $
# Maintainer: Alexander F Rødseth <xyproto@archlinux.org>

pkgname=http2check
pkgver=0.6
pkgrel=1
pkgdesc='Utility for checking if a given webserver supports HTTP/2'
arch=('x86_64' 'i686')
url='https://github.com/xyproto/http2check/'
license=('MIT')
makedepends=('go' 'git')
source=("git://github.com/xyproto/http2check.git#tag=$pkgver")
md5sums=('SKIP')

prepare() {
  cd "$pkgname"

  GOPATH="$srcdir" go get -d
}

build() {
  cd "$pkgname"

  GOPATH="$srcdir" go build
}

package() {
  cd "$pkgname"

  install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

# vim:set ts=2 sw=2 et: