Date: Saturday, October 5, 2019 @ 18:29:44 Author: bpiotrowski Revision: 512964
archrelease: copy trunk to testing-x86_64 Added: openfortivpn/repos/testing-x86_64/ openfortivpn/repos/testing-x86_64/PKGBUILD (from rev 512963, openfortivpn/trunk/PKGBUILD) ----------+ PKGBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) Copied: openfortivpn/repos/testing-x86_64/PKGBUILD (from rev 512963, openfortivpn/trunk/PKGBUILD) =================================================================== --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2019-10-05 18:29:44 UTC (rev 512964) @@ -0,0 +1,29 @@ +# Maintainer: Bartłomiej Piotrowski <bpiotrow...@archlinux.org> + +pkgname=openfortivpn +pkgver=1.10.0 +pkgrel=2 +pkgdesc="An open implementation of Fortinet's proprietary PPP+SSL VPN solution" +arch=(x86_64) +url="https://github.com/adrienverge/openfortivpn" +license=(GPL3) +depends=(openssl ppp) +backup=(etc/openfortivpn/config) +source=($pkgname-$pkgver.tar.gz::https://github.com/adrienverge/openfortivpn/archive/v$pkgver.tar.gz) +sha256sums=('d6ea0c84c0cf811530073fa19865334bb42ab10a780157fe95c4efb3476ad58d') + +prepare() { + cd $pkgname-$pkgver + autoreconf -fi +} + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +}