summaryrefslogtreecommitdiff
path: root/community/dante/PKGBUILD
blob: 2d5ec3718706c6c2d374ddb3d2138a306af8b230 (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
# $Id: PKGBUILD 42958 2011-03-22 21:15:35Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Guillem Rieu <guillemr@gmx.net>

pkgname=dante
pkgver=1.2.3
pkgrel=1
pkgdesc="SOCKS v4 and v5 compatible proxy server and client"
url="http://www.inet.no/dante"
arch=(i686 x86_64 'mips64el')
license=('custom')
depends=('tcp_wrappers' 'pam')
backup=('etc/socks.conf'
	'etc/sockd.conf')
options=(!libtool)
source=(ftp://ftp.inet.no/pub/socks/${pkgname}-${pkgver}.tar.gz
	sockd.rc)
md5sums=('b2874e53f5d8fe418cd40cb829536669'
         '5110dfd78a2b38fff27a886ee88b58a6')

build() {
  cd ${srcdir}/${pkgname}-${pkgver}

  [ $NOEXTRACT -eq 1 ] || ./configure --prefix=/usr --sysconfdir=/etc
  make
  make DESTDIR=${pkgdir} install

  # Config files
  mkdir -p ${pkgdir}/etc/conf.d
  cp example/{socks,sockd}.conf ${pkgdir}/etc

  # License
  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE

  # rc-script
  install -D -m755 ${srcdir}/sockd.rc ${pkgdir}/etc/rc.d/sockd
  echo 'SOCKD_OPTS="-D"' >${pkgdir}/etc/conf.d/sockd.conf
}