summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 16a4dfec95dde1250f88d16bfa448f6794190487 (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
44
45
46
47
48
49
50
51
52
53
54
55
# Maintainer: brent s. <bts[at]square-r00t[dot]net>
validpgpkeys=('748231EBCBD808A14F5E85D28C004C2F93481F6B')
# Bug reports can be filed at https://bugs.square-r00t.net/index.php?project=3
# News updates for packages can be followed at https://devblog.square-r00t.net
pkgname=stuntman-git
pkgver=1.2.1.r42.g4c9272e
pkgrel=1
pkgdesc="An open source STUN server and client code"
arch=('i686' 'x86_64')
url="http://www.stunprotocol.org/"
license=('Apache')
depends=()
#optdepends=('')
makedepends=('boost-libs')
_pkgname=stuntman
provides=("stuntman")
conflicts=("stuntman")
install=
changelog=
noextract=()
source=("stuntman::git+https://github.com/jselbie/stunserver.git")
# see https://wiki.archlinux.org/index.php/VCS_package_guidelines#Git_Submodules if you require git submodules
sha512sums=('SKIP')
pkgver() {
  cd "${srcdir}/${_pkgname}"
  # no tags, so number of revisions e.g. r1142.a17a017
  #printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
  ## most recent annotated tag e.g. 2.0.r6.ga17a017
  #git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
  ## most recent un-annotated tag e.g. 0.71.r115.gd95ee07
  git describe --long --tags | sed -e 's/\([^-]*-g\)/r\1/;s/-/./g' -e 's/^version//g'
  ## or:
  ##git describe --long --tags | sed 's/-/.r/;s/-/./'
  ## project uses tags with prefix. e.g. v...
  #git describe --long | sed 's/^foo-//;s/\([^-]*-g\)/r\1/;s/-/./g'
  ## both with fallback, e.g. 0.9.9.r27.g2b039da with tags, else r1581.2b039da
  #( set -o pipefail
  #  git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
  #  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
  #)
}
build() {
        cd "${srcdir}/${_pkgname}"
        make
}
package() {
	for i in stunclient stunserver stuntestcode;
	do
        	install -D -m0755 ${srcdir}/${_pkgname}/${i} ${pkgdir}/usr/bin/${i}
	done
	for i in HISTORY README;
	do
        	install -D -m0644 ${srcdir}/${_pkgname}/${i} ${pkgdir}/usr/share/doc/${_pkgname}/${i}
	done
}