traefik/PKGBUILD

26 lines
953 B
Bash
Raw Normal View History

2019-12-13 20:38:53 +00:00
# Maintainer : Christian Rebischke <chris.rebischke@archlinux.org>
pkgname=traefik
2020-01-25 21:25:32 +00:00
pkgver=2.1.3
2019-12-13 20:38:53 +00:00
pkgrel=1
pkgdesc="Simple tool for making locally-trusted development certificates"
arch=('x86_64')
url="https://containo.us/traefik/"
license=('MIT')
makedepends=('go-pie' 'git' 'go-bindata')
depends=('glibc')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/containous/traefik/releases/download/v${pkgver}/traefik-v${pkgver}.src.tar.gz")
2020-01-25 21:25:32 +00:00
sha512sums=('13daf6a7e90b34240c54949243df829843424fa87bc4bba65b294c84c6fc6b337941dc11849ec3fd16ab9e5d21f12d8913d91a938fa61047c711dcf6e498490f')
2019-12-13 20:38:53 +00:00
build() {
go generate
cd cmd/traefik
go build -trimpath -ldflags "-extldflags ${LDFLAGS}"
}
package() {
install -Dm755 cmd/traefik/"${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
install -Dm644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 contrib/systemd/traefik.service "${pkgdir}/usr/lib/systemd/system/traefik.service"
}