webcastmate-bin
maintainer xifan
· 0 votes
· scanned 2026-08-18 00:03:42.021799
LOW
View on AUR ↗
Why flagged
The package installs prebuilt binaries from the project's official GitHub releases; one architecture lacks a checksum but the source is trustworthy and no malicious behavior is evident.
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.
LOW
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package installs prebuilt binaries from the project's official GitHub releases; one architecture lacks a checksum but the source is trustworthy and no malicious behavior is evident.
PKGBUILD
1
# Maintainer: xifan <xifan2333@gmail.com>
2
pkgname=webcastmate-bin
3
_pkgname=webcastmate
4
pkgver=0.1.0
5
pkgrel=1
6
pkgdesc="Multi-platform live protocol CLI (no browser): login -> go-live RTMP -> live.json"
7
arch=('x86_64' 'aarch64')
8
url="https://github.com/xifan2333/webcast-mate"
9
license=('MIT')
10
provides=("${_pkgname}")
11
conflicts=("${_pkgname}")
12
options=(!strip)
13
source_x86_64=("webcastmate-linux-amd64-${pkgver}::https://github.com/xifan2333/webcast-mate/releases/download/v0.1.0/webcastmate-linux-amd64")
14
source_aarch64=("webcastmate-linux-arm64-${pkgver}::https://github.com/xifan2333/webcast-mate/releases/download/v0.1.0/webcastmate-linux-arm64")
15
sha256sums_x86_64=('e70e769677f28e7c81b824dd056b769922b6d259dd174c97446a9aa657058dfa')
16
sha256sums_aarch64=('SKIP')
17
18
package() {
19
cd "${srcdir}"
20
21
local binary
22
case "${CARCH}" in
23
x86_64) binary="webcastmate-linux-amd64-${pkgver}" ;;
24
aarch64) binary="webcastmate-linux-arm64-${pkgver}" ;;
25
esac
26
27
install -Dm755 "${binary}" "${pkgdir}/usr/bin/${_pkgname}"
28
}
29
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 00:03:42 | LOW | 2 |
| 2026-08-17 03:35:16 | LOW | 2 |