summaryrefslogtreecommitdiff
path: root/pcr/rfc5766-turn-server/PKGBUILD
blob: 38ca25b7db36008367ac045998256117e25ca0e9 (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
56
57
58
59
# Maintainer (Arch): orphan
# Contributor: Nicolás Reynolds <fauno@kiwwwi.com.ar>
# Contributor: Luke Shumaker <lukeshu@sbcglobal.net>
# Contributor: Michał Masłowski <mtjm@mtjm.eu>
# Maintainer (AUR): Vladimir Tsanev <tsachev@gmail.com>

pkgname=rfc5766-turn-server
_portname=turnserver
pkgver=3.2.2.8
pkgrel=1
pkgdesc="STUN and TURN Relay Server for VoIP and WebRTC"
arch=('i686' 'x86_64' 'mips64el')
url="http://code.google.com/p/rfc5766-turn-server/"
license=('BSD3')
depends=('libevent' 'postgresql-libs' 'libmysqlclient' 'hiredis')
install="$_portname.install"
backup=("etc/turnserver.conf" "etc/turnuserdb.conf")
changelog='ChangeLog'
source=(http://$_portname.open-sys.org/downloads/v$pkgver/$_portname-$pkgver.tar.gz $_portname.service $_portname.tmpfiles.d)
md5sums=('c16ff9ced1ba0797fbd16a66161dca2c'
         'bf568b614a17ee439e831b8f8aa7236a'
         'aa7bf422a9dfba7febb56dc172feb1cf')
sha1sums=('0faa1514f6819827f3ad0cffe2dc7bc6eef257cc'
          '0c5b348e793bd52ce0ee38d420b26c9b2a2e2ca5'
          '445e9982549d7ed018bc1fb6176a730313ae3d26')

build() {
  cd "$srcdir/$_portname-$pkgver"

  ./configure --prefix=/usr --manprefix=/usr/share --examplesdir="/usr/share/$_portname/examples" --disable-rpath
  make
}

check() {
  cd "$srcdir/$_portname-$pkgver"
  make check
}

package() {
  cd "$srcdir/$_portname-$pkgver"
  make DESTDIR="$pkgdir" install
  
  chmod 644 "$pkgdir/usr/lib/libturnclient.a"

  mv "$pkgdir/usr/etc" "$pkgdir/etc"
  local file
  for file in "$pkgdir/etc"/*.default; do
    mv "$file" "${file%.default}"
    chmod 644 "${file%.default}"
  done
  sed -e '/^#log-file=\/var\/tmp\/turn.log$/c log-file=\/var\/log\/turnserver\/turn.log' \
      -e '/^#pidfile="\/var\/run\/turnserver.pid"$/c pidfile="\/var\/run\/turnserver\/turnserver.pid"' \
      -i "$pkgdir/etc/turnserver.conf"

  install -Dm644 "../$_portname.service"    "$pkgdir/usr/lib/systemd/system/$_portname.service"
  install -Dm644 "../$_portname.tmpfiles.d" "$pkgdir/usr/lib/tmpfiles.d/$_portname.conf"

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