openvpn: initial import

This commit is contained in:
Thomas Penteker 2009-10-15 11:05:53 +02:00
parent e431d5707d
commit 46005d6343
3 changed files with 26 additions and 0 deletions

6
openvpn/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/openvpn.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/openvpn

1
openvpn/.md5sum Normal file
View File

@ -0,0 +1 @@
8187f8f21507faac5e320e32747203b8 openvpn-2.1_rc20.tar.gz

19
openvpn/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: VPN Client
# URL: http://www.openvpn.net
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: lzo
name=openvpn
version=2.1_rc20
release=1
source=(http://www.openvpn.net/release/openvpn-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/man
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}