blob: 36ff546163544eeb58264cfd2f4d36fee05cc7ed (
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
|
# Maintainer: Georg Nagel <g.schlmm at gmail dot com>
pkgname=livekit-cli
pkgver=2.3.1
pkgrel=1
pkgdesc='LiveKit CLI: command line utilities that interacts with LiveKit'
arch=(x86_64)
url='https://livekit.io/'
license=(Apache)
makedepends=(go)
source=(
"https://github.com/livekit/livekit-cli/archive/refs/tags/v${pkgver}.tar.gz"
)
sha256sums=(
'e6e6bf11930e47356248fd1b7e90549692ee415a77caf8f9d8b15ae471a31420'
)
build() {
cd "${pkgname}-${pkgver}"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
go build -ldflags "-w -s" -o ./bin/lk ./cmd/lk
GOOS=linux GOARCH=amd64 go build -o ./bin/lk-linux ./cmd/lk
}
package() {
install -vDm755 "${pkgname}-${pkgver}/bin/lk" -t "$pkgdir/usr/bin"
}
|