diff options
author | Richard Neumann | 2019-05-26 14:13:51 +0200 |
---|---|---|
committer | Richard Neumann | 2019-05-26 14:13:51 +0200 |
commit | aee96c9ea386af8473d2793ce36a1dea677879cb (patch) | |
tree | 20cf8820591a3252c33bb8a86919950f75884825 /PKGBUILD | |
download | aur-aee96c9ea386af8473d2793ce36a1dea677879cb.tar.gz |
Init.
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..a62dd841817f --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,19 @@ +# Maintainer: Richard Neumann aka. schard <mail at richard dash neumann period de> + +pkgname='wgmgr' +pkgver=1.0.0 +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') +source=("git+${url}.git#tag=${pkgver}") +md5sums=('SKIP') + + +package() { + cd "${pkgname}" + python setup.py install --root "${pkgdir}" --optimize=1 +} |