summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 40942d38d7efec7b4dc4c26bd97f511b87ee65c4 (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
# Maintainer: mutantmonkey <aur@mutantmonkey.mx>
pkgname=seccomp-compile
pkgver=5.6eb7f9d
pkgrel=1
pkgdesc="Tiny utility to compile seccomp rules in gosecco format and spit them out on stdout"
url="https://github.com/mutantmonkey/seccomp-compile"
arch=('i686' 'x86_64')
license=('WTFPL')
makedepends=('git' 'go')
source=("git+https://github.com/mutantmonkey/seccomp-compile.git")
sha256sums=('SKIP')

pkgver() {
  cd $srcdir/$pkgname
  echo $(git rev-list --count master).$(git rev-parse --short master)
}

build() {
  cd "$srcdir/$pkgname"
  GOPATH="$srcdir" go get -v -d
  GOPATH="$srcdir" go build
}

package() {
  cd "$srcdir/$pkgname"
  install -Dm0755 seccomp-compile "${pkgdir}/usr/bin/seccomp-compile"
}

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