blob: 648c4df125cc71e5deccf3ed2ba2825f35f774d6 (
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
|
# $Id: PKGBUILD 91850 2013-05-28 17:25:33Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Guillem Rieu <guillemr@gmx.net>
pkgname=dante
pkgver=1.3.2
pkgrel=5
pkgdesc="SOCKS v4 and v5 compatible proxy server and client"
url="http://www.inet.no/dante"
arch=(i686 x86_64 'mips64el')
license=('custom')
depends=('pam' 'krb5')
backup=('etc/socks.conf'
'etc/sockd.conf')
options=('!libtool')
source=(ftp://ftp.inet.no/pub/socks/${pkgname}-${pkgver}.tar.gz
sockd.service)
md5sums=('250c6456cd3fefa17f07fa80c9ccf6bd'
'9bb18a0165764092bd01da0ff6303fbf')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
[ -f Makefile ] || ./configure --prefix=/usr --sysconfdir=/etc \
--sbindir=/usr/bin \
--disable-libwrap
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
mkdir -p ${pkgdir}/etc/conf.d
cp example/{socks,sockd}.conf ${pkgdir}/etc
install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
echo 'SOCKD_OPTS="-D"' >${pkgdir}/etc/conf.d/sockd.conf
install -Dm0644 $srcdir/sockd.service $pkgdir/usr/lib/systemd/system/sockd.service
}
|