aboutsummaryrefslogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorFilip Wandzio <contact@philw.dev>2025-09-25 23:21:00 +0200
committerFilip Wandzio <contact@philw.dev>2025-09-25 23:21:00 +0200
commitc35fd32d1a3c9bdf91e2091b05741978606a3900 (patch)
treeacd2ccfbedad5c013ae537ee5850a931e76481f0 /PKGBUILD
parent53c9924ad4db79bc9c4b1c2fce045e7fe7d6f23e (diff)
downloadwhiterabbit-c35fd32d1a3c9bdf91e2091b05741978606a3900.tar.gz
whiterabbit-c35fd32d1a3c9bdf91e2091b05741978606a3900.zip
Add makefile and enable support for building on arch based distributions
Organize script into modular functions Add manpages Signed-off-by: Filip Wandzio <contact@philw.dev>
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD15
1 files changed, 15 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 0000000..c1cd771
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,15 @@
1pkgname=whiterabbit
2pkgver=1.0.0
3pkgrel=1
4pkgdesc="Auto-configure Matrix homeservers (Dendrite/Synapse) with Coturn and Nginx/Let's Encrypt"
5arch=('x86_64')
6url="https://example.com/whiterabbit"
7license=('MIT')
8depends=('docker' 'docker-compose' 'nginx' 'certbot' 'coturn' 'bash')
9source=("whiterabbit.sh")
10sha256sums=('SKIP')
11
12package() {
13 install -Dm755 "$srcdir/whiterabbit.sh" "$pkgdir/usr/bin/whiterabbit"
14}
15