mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
31 lines
976 B
Bash
31 lines
976 B
Bash
|
# $Id: PKGBUILD 21431 2008-12-13 09:15:06Z thomas $
|
||
|
# Maintainer: Thomas Baechler <thomas@archlinux.org>
|
||
|
pkgname=vpnc
|
||
|
pkgver=0.5.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="VPN client for cisco3000 VPN Concentrators"
|
||
|
url="http://www.unix-ag.uni-kl.de/~massar/vpnc/"
|
||
|
license=('GPL')
|
||
|
depends=('libgcrypt' 'openssl' 'iproute')
|
||
|
arch=('i686' 'x86_64')
|
||
|
source=(http://www.unix-ag.uni-kl.de/~massar/vpnc/$pkgname-$pkgver.tar.gz
|
||
|
vpnc.conf vpnc.rc)
|
||
|
backup=(etc/vpnc/default.conf)
|
||
|
md5sums=('4378f9551d5b077e1770bbe09995afb3'
|
||
|
'a3f4e0cc682f437e310a1c86ae198e45'
|
||
|
'c5885162ac198eaa36da9a01e7c0c55b')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
|
||
|
# Build hybrid support
|
||
|
sed -i 's|^#OPENSSL|OPENSSL|g' Makefile
|
||
|
|
||
|
make PREFIX=/usr || return 1
|
||
|
make DESTDIR=$startdir/pkg PREFIX=/usr install
|
||
|
|
||
|
install -D -m644 $startdir/src/vpnc.conf $startdir/pkg/etc/vpnc/default.conf
|
||
|
install -D -m755 $startdir/src/vpnc.rc $startdir/pkg/etc/rc.d/vpnc
|
||
|
rm -f $startdir/pkg/etc/vpnc/vpnc.conf
|
||
|
}
|