summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorRichard Neumann2019-05-26 14:13:51 +0200
committerRichard Neumann2019-05-26 14:13:51 +0200
commitaee96c9ea386af8473d2793ce36a1dea677879cb (patch)
tree20cf8820591a3252c33bb8a86919950f75884825 /PKGBUILD
downloadaur-aee96c9ea386af8473d2793ce36a1dea677879cb.tar.gz
Init.
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD19
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
+}