Created
September 1, 2016 19:39
-
-
Save bvaudour/b4b468d90623dff938c0d1a5f0f5d05e to your computer and use it in GitHub Desktop.
openfortivpn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=openfortivpn | |
pkgver=1.1.4 | |
pkgrel=1 | |
pkgdesc="Client for PPP+SSL VPN tunnel services" | |
arch=('x86_64') | |
url="https://github.com/adrienverge/openfortivpn" | |
license=('GPL3') | |
depends=('openssl' 'ppp') | |
makedepends=('git') | |
backup=('etc/openfortivpn/config') | |
source=("git+https://github.com/adrienverge/${pkgname}.git#tag=v${pkgver}") | |
md5sums=('SKIP') | |
build() { | |
cd "${srcdir}/${pkgname}" | |
aclocal | |
autoconf | |
automake --add-missing | |
./configure --prefix=/usr --sysconfdir=/etc | |
make | |
} | |
package() { | |
cd "${srcdir}/${pkgname}" | |
make DESTDIR="${pkgdir}/" install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment