blob: a49df50f7e2a994e6b88a7eb35f2248c11feecf8 (
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
27
28
29
30
|
# Maintainer: Joël Porquet-Lupine <joel@porquet.org>
_pkgname='openconnect-pulse-gui'
pkgname="${_pkgname}-git"
pkgver=r23.47edbd8
pkgrel=1
pkgdesc="Allows openconnect web-based authentication for Pulse Secure Connect appliances"
url="https://github.com/utknoxville/openconnect-pulse-gui"
arch=('any')
license=('GPL3')
depends=('bash' 'python-gobject' 'webkit2gtk' 'openconnect')
makedepends=(python-build python-installer python-wheel python-setuptools python-setuptools-scm)
source=("${_pkgname}::git+${url}")
md5sums=('SKIP')
pkgver() {
cd ${_pkgname}
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd ${_pkgname}
python -m build --wheel --no-isolation
}
package() {
cd ${_pkgname}
python -m installer --destdir="$pkgdir" dist/*.whl
}
|