From c35fd32d1a3c9bdf91e2091b05741978606a3900 Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Thu, 25 Sep 2025 23:21:00 +0200 Subject: Add makefile and enable support for building on arch based distributions Organize script into modular functions Add manpages Signed-off-by: Filip Wandzio --- PKGBUILD | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 PKGBUILD (limited to 'PKGBUILD') diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..c1cd771 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,15 @@ +pkgname=whiterabbit +pkgver=1.0.0 +pkgrel=1 +pkgdesc="Auto-configure Matrix homeservers (Dendrite/Synapse) with Coturn and Nginx/Let's Encrypt" +arch=('x86_64') +url="https://example.com/whiterabbit" +license=('MIT') +depends=('docker' 'docker-compose' 'nginx' 'certbot' 'coturn' 'bash') +source=("whiterabbit.sh") +sha256sums=('SKIP') + +package() { + install -Dm755 "$srcdir/whiterabbit.sh" "$pkgdir/usr/bin/whiterabbit" +} + -- cgit v1.2.3