blob: 7d17288129e3aab597d07e43172af60611128fc3 (
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
|
# Maintainer: Mario Finelli <mario at finel dot li>
pkgname=otel-tui
pkgver=0.3.6
pkgrel=1
pkgdesc="A terminal OpenTelemetry viewer inspired by otel-desktop-viewer"
arch=(x86_64)
url=https://github.com/ymtdzzz/otel-tui
license=(Apache-2.0)
depends=(glibc libx11)
makedepends=(go)
source=(${url}/archive/v${pkgver}/$pkgname-$pkgver.tar.gz)
sha256sums=('370fdadbbdca8839e5ef6e6e6bd78c8b6a87e94e74432773b11a524946a47111')
prepare() {
cd $pkgname-$pkgver
export GOPATH="${srcdir}/gopath"
go mod download
}
build() {
cd $pkgname-$pkgver
export CGO_LDFLAGS="$LDFLAGS"
export CGO_CFLAGS="$CFLAGS"
export CGO_CPPFLAGS="$CPPFLAGS"
export CGO_CXXFLAGS="$CXXFLAGS"
export GOPATH="${srcdir}/gopath"
go build \
-o otel-tui \
-trimpath \
-buildmode=pie \
-mod=readonly \
-ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
./...
}
package() {
cd $pkgname-$pkgver
install -Dm0755 otel-tui "$pkgdir/usr/bin/otel-tui"
}
# vim: set ts=2 sw=2 et:
|