blob: 425fd266aa75ce88935752715a74bb34cbf107c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: vociferous <vociferous@fail.pm>
# Contributor: Stetsed <aur.arch@stetsed.xyz>
pkgname=caddy-multiplugins
pkgver=2.10.2
pkgrel=2
pkgdesc="Caddy web server"
arch=('any')
url="https://github.com/caddyserver/caddy"
license=('Apache-2.0')
makedepends=('go' 'xcaddy')
provides=("caddy")
conflicts=("caddy")
source=(
"Caddyfile"
"caddy.service"
"caddy.sysusers"
"caddy.tmpfiles"
)
sha256sums=('9bca9b879484cd1e6c7191c83e077ba9c851c2c10c998333219179bfb0fb93f7'
'dbaedf6929f5292d9ec32d2bcb4990cb3747b58940b385d26564e1abb5dd89ab'
'a9294eeba17a8fd57cf11cef21e2eb3719a016646eeac0764a0d9f9f380a40ef'
'c3119c98b285c4bf10c0581fba09b87df3999e0e5a335d94f074eae454a99e70')
build() {
xcaddy build v${pkgver} --with github.com/greenpau/caddy-security --with github.com/techknowlogick/certmagic-s3 --with github.com/pberkel/caddy-storage-redis --with github.com/pteich/caddy-tlsconsul --with github.com/mholt/caddy-l4 --with github.com/caddy-dns/powerdns
}
package() {
# Install the executables
install -d "$pkgdir"/usr/bin/
install -m 755 caddy "$pkgdir"/usr/bin/
# Basic configuration with example
install -Dm 644 "${srcdir}/Caddyfile" "${pkgdir}/etc/caddy/Caddyfile"
install -d "${pkgdir}/etc/caddy/conf.d"
# Systemd service setup
install -Dm 644 "${srcdir}/caddy.service" -t "${pkgdir}/usr/lib/systemd/system"
install -Dm 644 "${srcdir}/caddy.sysusers" "${pkgdir}/usr/lib/sysusers.d/caddy.conf"
install -Dm 644 "${srcdir}/caddy.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/caddy.conf"
}
|