blob: f7adb60bb68c10771e4ff7747029c7b3780ce834 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Maintainer: Samuel Collins <samuel.collins@live.co.uk>
pkgname=openfortivpn-webview-qt
pkgver=1.3.0
pkgrel=1
pkgdesc="Application to perform the SAML single sing-on and easily retrieve the SVPNCOOKIE needed by openfortivpn - Qt version"
arch=(x86_64)
url="https://github.com/gm-vm/openfortivpn-webview"
license=('MIT')
depends=(qt6-base qt6-webengine)
makedepends=(git)
optdepends=(openfortivpn)
provides=(openfortivpn-webview)
source=("$pkgname::git+https://github.com/gm-vm/openfortivpn-webview.git#tag=v$pkgver-qt")
sha256sums=('14429fafab081055573a11f0e51dada4c8b2cc21a3fbb3496861b2ec88846db9')
build() {
cd "$pkgname/openfortivpn-webview-qt"
qmake6 .
make
}
package() {
cd "$pkgname"
install -Dm755 openfortivpn-webview-qt/openfortivpn-webview "$pkgdir/usr/bin/openfortivpn-webview"
install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|