Update to v4.25-9656-3
This commit is contained in:
parent
7b30654fb6
commit
46e04b9ab5
2 changed files with 6 additions and 4 deletions
2
.SRCINFO
2
.SRCINFO
|
@ -1,7 +1,7 @@
|
|||
pkgbase = softethervpn
|
||||
pkgdesc = Multi-protocol VPN Program from University of Tsukuba
|
||||
pkgver = v4.25_9656
|
||||
pkgrel = 2
|
||||
pkgrel = 3
|
||||
url = http://www.softether.org/
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
|
|
8
PKGBUILD
8
PKGBUILD
|
@ -2,7 +2,7 @@
|
|||
# Maintainer: Jonathan Liu <net147@gmail.com>
|
||||
pkgname=softethervpn
|
||||
pkgver=v4.25_9656
|
||||
pkgrel=2
|
||||
pkgrel=3
|
||||
pkgdesc="Multi-protocol VPN Program from University of Tsukuba"
|
||||
arch=('i686' 'x86_64' 'aarch64' 'armv7h')
|
||||
source=('http://www.softether-download.com/files/softether/v4.25-9656-rtm-2018.01.15-tree/Source_Code/softether-src-v4.25-9656-rtm.tar.gz'
|
||||
|
@ -20,9 +20,11 @@ url="http://www.softether.org/"
|
|||
build(){
|
||||
cd "${srcdir}/${pkgver//_/-}"
|
||||
|
||||
if [ "${CARCH}" == "i686" ]; then
|
||||
if [ "${CARCH}" == "i686" ]; then
|
||||
cp src/makefiles/linux_32bit.mak Makefile
|
||||
elif [ "${CARCH}" == "x86_64" ]; then
|
||||
elif [ "${CARCH}" == "x86_64" ]; then
|
||||
cp src/makefiles/linux_64bit.mak Makefile
|
||||
elif [ "${CARCH}" == "aarch64" ]; then
|
||||
cp src/makefiles/linux_64bit.mak Makefile
|
||||
elif [ "${CARCH}" == "armv7h" ]; then
|
||||
cp src/makefiles/linux_32bit.mak Makefile
|
||||
|
|
Loading…
Reference in a new issue