opt/stunnel/Pkgfile

33 lines
1.0 KiB
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Stunnel wraps normal socket connections with SSL/TLS
# URL: http://www.stunnel.org
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
2010-04-08 11:33:03 +02:00
# Depends on: openssl tcp_wrappers zlib
2006-02-23 16:26:10 +01:00
name=stunnel
version=4.55
2006-02-23 16:26:10 +01:00
release=1
2011-11-21 18:33:30 +01:00
source=(ftp://ftp.stunnel.org/stunnel/archive/4.x/$name-$version.tar.gz \
2006-03-12 13:35:51 +01:00
$name-config.patch $name)
2006-02-23 16:26:10 +01:00
build () {
cd $name-$version
2008-04-09 09:45:31 +02:00
2008-05-07 19:37:45 +02:00
patch -p1 -i $SRC/$name-config.patch
2008-04-09 09:45:31 +02:00
2006-02-23 16:26:10 +01:00
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--with-ssl=/usr \
2010-03-25 10:41:00 +01:00
--enable-ipv6
2006-02-23 16:26:10 +01:00
make
2008-04-09 09:45:31 +02:00
2006-02-23 16:26:10 +01:00
install -D -m 0755 src/stunnel $PKG/usr/sbin/stunnel
install -D -m 0644 doc/stunnel.8 $PKG/usr/man/man8/stunnel.8
2006-03-12 13:35:51 +01:00
install -D -m 0755 $SRC/stunnel $PKG/etc/rc.d/stunnel
2006-02-23 16:26:10 +01:00
install -m 0644 tools/stunnel.conf-sample $PKG/etc/stunnel.conf
install -d $PKG/{var/run,etc/ssl/{certs,keys}}
2011-06-18 15:59:54 +02:00
install -d -m 770 -o stunnel -g stunnel $PKG/var/run/stunnel
2006-03-12 13:35:51 +01:00
touch $PKG/etc/ssl/{certs/stunnel.crt,keys/stunnel.key}
chmod 0600 $PKG/etc/ssl/keys/stunnel.key
2006-02-23 16:26:10 +01:00
}