summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7137dc4865b1e2f5cc8e69521f08b3a6fe931575 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Richard Neumann aka. schard <mail at richard dash neumann period de>

pkgname='wgmgr'
pkgver=1.5.2
pkgrel=1
pkgdesc='Manages WireGuard PKIs for VPN-like deployments'
arch=('any')
url="https://github.com/coNQP/${pkgname}"
license=('GPLv3')
depends=('python' 'python-wgtools')
makedepends=('git' 'python-setuptools-scm')
source=("git+${url}.git#tag=${pkgver}")
md5sums=('SKIP')

build() {
    cd "${pkgname}"
    python setup.py build
}

package() {
    cd "${pkgname}"
    python setup.py install --root "${pkgdir}" --optimize=1 --skip-build
}