diff options
| author | Filip Wandzio <contact@philw.dev> | 2025-09-25 23:21:00 +0200 |
|---|---|---|
| committer | Filip Wandzio <contact@philw.dev> | 2025-09-25 23:21:00 +0200 |
| commit | c35fd32d1a3c9bdf91e2091b05741978606a3900 (patch) | |
| tree | acd2ccfbedad5c013ae537ee5850a931e76481f0 /PKGBUILD | |
| parent | 53c9924ad4db79bc9c4b1c2fce045e7fe7d6f23e (diff) | |
| download | whiterabbit-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-- | PKGBUILD | 15 |
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 @@ | |||
| 1 | pkgname=whiterabbit | ||
| 2 | pkgver=1.0.0 | ||
| 3 | pkgrel=1 | ||
| 4 | pkgdesc="Auto-configure Matrix homeservers (Dendrite/Synapse) with Coturn and Nginx/Let's Encrypt" | ||
| 5 | arch=('x86_64') | ||
| 6 | url="https://example.com/whiterabbit" | ||
| 7 | license=('MIT') | ||
| 8 | depends=('docker' 'docker-compose' 'nginx' 'certbot' 'coturn' 'bash') | ||
| 9 | source=("whiterabbit.sh") | ||
| 10 | sha256sums=('SKIP') | ||
| 11 | |||
| 12 | package() { | ||
| 13 | install -Dm755 "$srcdir/whiterabbit.sh" "$pkgdir/usr/bin/whiterabbit" | ||
| 14 | } | ||
| 15 | |||
