summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d6937acfd695e41be640e5abe39499c29503d77e (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
43
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>

pkgname=curvedns-git
pkgver=0.87.r13.gf6dc1e7
pkgrel=1
pkgdesc="A DNSCurve forwarding name server"
arch=('i686' 'x86_64')
url="https://github.com/curvedns/curvedns"
license=('BSD')
depends=('glibc' 'libev')
makedepends=('git')
provides=("curvedns=$pkgver")
conflicts=('curvedns')
source=("git+https://github.com/curvedns/curvedns.git")
sha256sums=('SKIP')


pkgver() {
  cd "curvedns"

  _tag=$(git tag -l --sort -v:refname | head -n1 | sed 's/curvedns-//')
  _rev=$(git rev-list --count curvedns-$_tag..HEAD)
  _hash=$(git rev-parse --short HEAD)
  printf "%s.r%s.g%s" "$_tag" "$_rev" "$_hash"
}

build() {
  cd "curvedns"

  ./configure.nacl

  ./configure.curvedns
  echo $CFLAGS > "nacl/build/work/curvedns/cflags"
  ./configure.curvedns
  make
}

package() {
  cd "curvedns"

  install -Dm755 curvedns{,-keygen} -t "$pkgdir/usr/bin"
  install -Dm644 "LICENSE.md" -t "$pkgdir/usr/share/licenses/curvedns"
}