forked from macports/macports-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPortfile
More file actions
45 lines (35 loc) · 1.71 KB
/
Portfile
File metadata and controls
45 lines (35 loc) · 1.71 KB
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
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
PortGroup golang 1.0
go.setup github.com/kubetail-org/kubetail 0.13.0 cli/v
github.tarball_from releases
revision 0
distname kubetail-${version}-vendored
supported_archs arm64 x86_64
categories devel
license Apache-2
maintainers {kubetail.com:andres @amorey} openmaintainer
description Real-time logging tool for Kubernetes
long_description Kubetail is a general-purpose logging tool for Kubernetes, optimized \
for tailing logs across multi-container workloads in real-time. With \
Kubetail, you can view logs from all the containers in a workload \
merged into a single, chronological timeline, in a browser or a \
terminal.
checksums ${distname}${extract.suffix} \
rmd160 1b2ff320773ec72725baeefe61810c9fdd51c4e5 \
sha256 155dd8e2956ab2a576bc950ed1bb80d524983afc6ceeab76cfc4c5976242bc79 \
size 20863240
build.env-append GO111MODULE=on \
GOWORK=off
build.dir ${worksrcpath}/modules/cli
build.args-append \
-mod=vendor \
-ldflags \"-s -w -X ${go.package}/modules/cli/cmd.version=${version}\" \
-o ../../bin/kubetail
destroot {
xinstall -m 0755 ${worksrcpath}/bin/kubetail ${destroot}${prefix}/bin/kubetail
xinstall -d ${destroot}${prefix}/share/doc/${name}
if {[file exists ${worksrcpath}/LICENSE]} {
xinstall -m 0644 ${worksrcpath}/LICENSE ${destroot}${prefix}/share/doc/${name}/
}
}