blob: c6fd24a1f808d173cdb505a21ca2d375eeec1a50 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=traefik-git
pkgver=3.0.0.rc5.r27.g05d2c8607
pkgrel=1
pkgdesc="The cloud native edge router"
arch=('i686' 'x86_64')
url="https://traefik.io/"
license=('MIT')
depends=('glibc')
makedepends=('git' 'go')
provides=("traefik=$pkgver")
conflicts=('traefik')
backup=('etc/traefik/traefik.toml'
'etc/traefik/traefik.yaml'
'etc/traefik/traefik.yml')
source=("git+https://github.com/traefik/traefik.git"
"traefik.service::https://gitlab.archlinux.org/archlinux/packaging/packages/traefik/-/raw/main/traefik.service"
"traefik.sysusers::https://gitlab.archlinux.org/archlinux/packaging/packages/traefik/-/raw/main/traefik.sysusers")
sha256sums=('SKIP'
'SKIP'
'SKIP')
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath -mod=readonly -modcacherw"
pkgver() {
cd "traefik"
_tag=$(git tag -l --sort -v:refname | grep -E '^v?[0-9\.]+' | head -n1)
_rev=$(git rev-list --count $_tag..HEAD)
_hash=$(git rev-parse --short HEAD)
printf "%s.r%s.g%s" "$_tag" "$_rev" "$_hash" | sed 's/^v//;s/-/./g'
}
build() {
cd "traefik"
go generate
go build \
./cmd/traefik
}
check() {
cd "traefik"
#go test \
# ./...
}
package() {
cd "traefik"
install -Dm755 "traefik" -t "$pkgdir/usr/bin"
install -Dm644 "$srcdir/traefik.service" -t "$pkgdir/usr/lib/systemd/system"
install -Dm644 "$srcdir/traefik.sysusers" "$pkgdir/usr/lib/sysusers.d/traefik.conf"
install -Dm644 "LICENSE.md" -t "$pkgdir/usr/share/licenses/traefik"
# create empty acme.json file, otherwise the service file will fail
install -dm755 "$pkgdir/etc/traefik"
touch "$pkgdir/etc/traefik/acme.json"
}
|