Skip to content
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
JackMoriarty committed Jan 1, 2021
1 parent 3c93caf commit 224f266
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
40 changes: 40 additions & 0 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: Bangduo Chen <[email protected]>
pkgname=HillstoneVPN
pkgver=1.0.0
pkgrel=1
epoch=
pkgdesc="The Hillstone Secure Connect VPN client for Linux. "
arch=(x86_64)
url="http://docs.hillstonenet.com/en/Content/7_VPN/SSL_VPN_Client_L.htm#"
license=('unknown')
groups=()
depends=()
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://github.com/JackMoriarty/HillstoneVPN/releases/download/v1.0.0/$pkgname-$pkgver.tar.gz")
noextract=()
md5sums=('bb0301e31bdaf7c6bcbafae8e74cd3d6')
validpgpkeys=()

package() {
tar -zxvf "$pkgname-$pkgver.tar.gz" -C "${srcdir}"

install -d "${pkgdir}/opt"
cp -r "${srcdir}/$pkgname" "${pkgdir}/opt"

install -d "${pkgdir}/usr/share/applications"
install -Dm755 "${srcdir}/$pkgname/HillstoneVPN.desktop" "${pkgdir}/usr/share/applications"
}
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# HillstoneVPN
Hillstone VPN for Linux, remove the Linux distritution Judgment
Hillstone VPN for Linux, remove the Linux distritution judgment.

There provides PKGBUILD script for ArchLinux User.

The Hillstone VPN official website: [Hillstone VPN](http://docs.hillstonenet.com/en/Content/7_VPN/SSL_VPN_Client_L.htm#)

0 comments on commit 224f266

Please sign in to comment.