teacrush-git
LOW
maintainer outrage
0 votes
scanned 2026-09-12 17:12:25.717441
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
# Maintainer: zeozeozeo <killabites@duck.com>
2
# Upstream: https://github.com/zeozeozeo/teacrush
3
pkgname=teacrush-git
4
pkgver=0.1.0.r0.g0000000
5
pkgrel=1
6
pkgdesc='Bubble Tea TUI for compressing videos down to a target size (git master)'
7
arch=('x86_64' 'aarch64')
8
url='https://github.com/zeozeozeo/teacrush'
9
license=('Unlicense')
10
depends=('ffmpeg' 'glibc')
11
makedepends=('git' 'go')
12
provides=('teacrush')
13
conflicts=('teacrush' 'teacrush-bin')
14
optdepends=(
15
'nvidia-utils: NVENC hardware encoding'
16
'intel-media-driver: Intel QSV hardware encoding'
17
'libva-mesa-driver: AMD VA-API hardware encoding'
18
)
19
source=("git+https://github.com/zeozeozeo/teacrush.git")
20
sha256sums=('SKIP')
21
22
pkgver() {
23
cd teacrush
24
# e.g. 0.1.0.r12.gabcdef1 (or 0.1.0 if exactly on a tag).
25
# --match limits describe to stable v* tags so the floating
26
# nightly tag never hijacks versioning.
27
git describe --long --tags --match 'v*' | sed 's/^v//;s/-/./g'
28
}
29
30
build() {
31
cd teacrush
32
export CGO_ENABLED=1
33
export GOFLAGS='-trimpath -mod=readonly'
34
# -buildmode=pie + external linking honors makepkg LDFLAGS (RELRO/PIE).
35
# shellcheck disable=SC2154
36
go build -buildmode=pie -ldflags="-s -w -linkmode=external -extldflags \"$LDFLAGS\"" -o teacrush .
37
}
38
39
package() {
40
cd teacrush
41
install -Dm755 teacrush "$pkgdir/usr/bin/teacrush"
42
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
43
}
44
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-12 17:12:25 | Low | 1 |