octa-term
LOW
maintainer Alvin
0 votes
scanned 2026-08-24 19:24:22.399485
Why flagged
Package builds from source via git tag of the project's own GitHub repository; SKIP'd checksum is common for git sources but reduces verifiability; no remote code execution or malicious patterns detected.
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%): Package builds from source via git tag of the project's own GitHub repository; SKIP'd checksum is common for git sources but reduces verifiability; no remote code execution or malicious patterns detected.
PKGBUILD
1
# Maintainer: cublueer <starriver_alvin@163.com>
2
#
3
# octa-term:终端无感数学计算(系统 GNU Octave)
4
# 从 v${pkgver} 标签源码构建。标签不存在时 `makepkg` 拉取会失败,
5
# 请在仓库打上对应 tag(git tag v${pkgver} && git push origin v${pkgver})。
6
#
7
# 用法(在干净目录中):
8
# PACKAGER='cublueer <cublueer@users.noreply.github.com>' makepkg -Cf
9
10
pkgname=octa-term
11
pkgver=0.1.0
12
pkgrel=1
13
pkgdesc='终端无感数学计算:把 shell 输入行变成 Octave 计算器(fish/bash/zsh 集成)'
14
arch=('x86_64' 'aarch64')
15
url='https://github.com/cublueer/octa-term'
16
license=('MIT')
17
options=('!lto' '!debug')
18
export LC_ALL=C.UTF-8
19
depends=('octave' 'libgcc' 'glibc')
20
makedepends=('cargo' 'git')
21
optdepends=(
22
'fish: fish shell integration (Enter 劫持、多行矩阵、自动续行)'
23
'bash: bash shell integration (单行兜底)'
24
'zsh: zsh shell integration (单行兜底)'
25
)
26
source=(
27
"octa-term::git+${url}.git#tag=v${pkgver}"
28
)
29
sha256sums=(
30
'SKIP'
31
)
32
33
prepare() {
34
cd octa-term
35
cargo fetch --locked --target "${CARCH}-unknown-linux-gnu"
36
}
37
38
build() {
39
cd octa-term
40
cargo build --release --locked
41
}
42
43
package() {
44
cd octa-term
45
install -Dm755 "target/release/octa-term" "${pkgdir}/usr/bin/octa-term"
46
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
47
}
48
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-24 19:24:22 | Low | 2 |