kino-tui
LOW
maintainer jaytau
0 votes
scanned 2026-09-05 16:00:23.828148
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
Triggered rules
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
PKGBUILD
1
# SPDX-License-Identifier: 0BSD
2
# Maintainer: jaytau <95355656+jay-tau@users.noreply.github.com>
3
4
pkgname=kino-tui
5
_pkgname=kino
6
pkgver=0.6.0
7
pkgrel=1
8
pkgdesc='Terminal client for browsing and playing Plex or Jellyfin media'
9
arch=('x86_64' 'aarch64')
10
url='https://github.com/mmcdole/kino'
11
license=('MIT')
12
depends=('glibc' 'ca-certificates')
13
makedepends=('go>=1.25.5')
14
optdepends=('mpv: recommended media player'
15
'vlc: alternative media player'
16
'xdg-utils: fallback playback via the system URL handler')
17
conflicts=('kino')
18
options=('!lto' '!debug')
19
source=("$_pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
20
sha256sums=('40f4fa8d1be118003c2146879b3a4760852e9e816158f869cbec6dc4457a0fb5')
21
22
prepare() {
23
cd "$_pkgname-$pkgver"
24
export GOPATH="$srcdir/go"
25
GOFLAGS=-modcacherw go mod download
26
}
27
28
build() {
29
cd "$_pkgname-$pkgver"
30
export GOPATH="$srcdir/go"
31
export CGO_CPPFLAGS="$CPPFLAGS"
32
export CGO_CFLAGS="$CFLAGS"
33
export CGO_CXXFLAGS="$CXXFLAGS"
34
export CGO_LDFLAGS="$LDFLAGS"
35
go build -buildvcs=false -trimpath -buildmode=pie -mod=readonly -modcacherw \
36
-ldflags="-linkmode=external -X main.Version=v$pkgver" \
37
-o kino ./cmd/kino
38
}
39
40
check() {
41
cd "$_pkgname-$pkgver"
42
export GOPATH="$srcdir/go"
43
go test -mod=readonly ./...
44
}
45
46
package() {
47
cd "$_pkgname-$pkgver"
48
install -Dm755 kino "$pkgdir/usr/bin/kino"
49
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
50
install -Dm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md config.example.yaml
51
}
52
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-05 16:00:23 | Low | 1 |