Update to v4.20_9608-5

This commit is contained in:
Jonathan Liu 2017-05-02 10:46:28 +10:00
parent 78baa66492
commit 48402665d5
3 changed files with 51 additions and 7 deletions

View file

@ -2,26 +2,29 @@
# Maintainer: Jonathan Liu <net147@gmail.com>
pkgname=softethervpn
pkgver=v4.20_9608
pkgrel=4
pkgrel=5
pkgdesc="Multi-protocol VPN Program from University of Tsukuba"
arch=('i686' 'x86_64' 'armv7h')
source=('http://www.softether-download.com/files/softether/v4.20-9608-rtm-2016.04.17-tree/Source_Code/softether-src-v4.20-9608-rtm.tar.gz'
'disable_sslv3.patch'
'openssl.patch'
'softethervpn-bridge.service'
'softethervpn-client.service'
'softethervpn-server.service')
sha1sums=('8fb5693818d8bde2dfff37582a4cdc1d0703e200'
'ed10141565efe05dbe7ff9aae713dc4bef84e1c5'
'dab67d28b79ebb2373656de9c985e088183a386a'
'12a3919aabcdd7531320056a4b43072892232925'
'ba594c7defb52548369726c56e2cad633019abef'
'06cd320553daf0dffdf6a81a22d630fbe211fc33')
license=('GPL')
makedepends=()
depends=('bash' 'openssl' 'zlib')
depends=('bash' 'openssl-1.0' 'zlib')
url="http://www.softether.org/"
build(){
cd "${srcdir}/${pkgver//_/-}"
patch -Np1 --binary -i "${srcdir}/disable_sslv3.patch"
patch -Np1 --binary -i "${srcdir}/openssl.patch"
if [ "${CARCH}" == "i686" ]; then
cp src/makefiles/linux_32bit.mak Makefile
@ -31,7 +34,6 @@ build(){
cp src/makefiles/linux_32bit.mak Makefile
fi
patch -Np1 --binary -i "${srcdir}/disable_sslv3.patch"
make
}