hybridfilexfer-git
The package builds from a legitimate GitHub source and includes a Maven JAR with a valid checksum; the non-whitelisted host is GitHub, which is plausibly the project's official repository, and no untrusted executable code is downloaded or executed.
Triggered rules
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package builds from a legitimate GitHub source and includes a Maven JAR with a valid checksum; the non-whitelisted host is GitHub, which is plausibly the project's official repository, and no untrusted executable code is downloaded or executed.
1 higher static finding superseded - not the current verdict (shown for transparency)
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:35
'annotations.jar::https://repo1.maven.org/maven2/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar'
PKGBUILD
1 offending line(s) highlighted# Maintainer: Nlsdt <xsfx0313@proton.me>
# Maintainer: Li Hua <lihua@email.com>
# 包元数据
_pkgname=HybridFileXfer
# https://github.com/weixiansen574/HybridFileXfer
pkgname=hybridfilexfer-git
pkgver=r65.7de4351
pkgrel=2
pkgdesc='Multi-track Express Transfer: Simultaneously utilize all I/O channels (USB+WiFi) for maximum file transfer speed || 多轨快传:同时利用所有输入/输出通道 (USB+WiFi),实现最大文件传输速度'
# 多轨快传:同时利用所有输入/输出通道(USB+WiFi),实现最大文件传输速度
arch=('x86_64')
url='https://github.com/weixiansen574/HybridFileXfer'
license=('GPL-3.0-only')
# 依赖
depends=(
'java-runtime>=8'
'android-tools'
'android-udev'
'bash'
)
# 依赖 java1.8, adb 属于 android-tools
makedepends=(
'jdk8-openjdk'
'git'
)
# 编译依赖 **必须** 依赖 java 8 (为什么这么老?
provides=('hybridfilexfer')
conflicts=('hybridfilexfer')
# 资源获取
source=(
"$_pkgname::git+https://github.com/weixiansen574/HybridFileXfer.git"
'annotations.jar::https://repo1.maven.org/maven2/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar'
)
sha256sums=(
'SKIP'
'61666dbce7e42e6c85b43c04fcfb8293a21dcb55b3c80e869270ce42c01a6b35'
)
pkgver() {
cd "$_pkgname"
( set -o pipefail
git describe --long --abbrev=7 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
)
}
# 准备
prepare() {
mv annotations.jar "./$_pkgname/$_pkgname-PC/annotations.jar"
}
# 构建
build() {
cd $_pkgname/$_pkgname-PC
find src -name "*.java" > sources.txt
echo '编译 classes | compile classes'
mkdir -p build/classes
/usr/lib/jvm/java-8-openjdk/bin/javac -cp annotations.jar -d build/classes @sources.txt
echo '编译 classes 完成| compile classes done'
echo '复制语言文件 | copy i18n files'
cp ./src/messages_*.properties ./build/classes/
echo '复制语言文件 完成| copy i18n files done'
echo 'jar 打包 | packing jar'
jar cvfm "$_pkgname.jar" ./src/META-INF/MANIFEST.MF -C build/classes .
echo 'jar 打包 完成| packing jar done'
}
#安装
package() {
install -dm755 "$pkgdir/usr/share/java/$_pkgname/"
# 安装 jar 文件
install -Dm644 "$_pkgname/$_pkgname-PC/$_pkgname.jar" "$pkgdir/usr/share/java/$_pkgname/$_pkgname.jar"
install -dm755 "$pkgdir/usr/bin/"
cat > "${_pkgname,,}" << EOF
#!/bin/bash
exec java -jar /usr/share/java/$_pkgname/$_pkgname.jar "\$@"
EOF
install -Dm755 "${_pkgname,,}" "$pkgdir/usr/bin/$_pkgname"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Low | 2 |
| 2026-09-16 00:03:17 | Low | 2 |
| 2026-09-15 00:25:31 | Low | 2 |
| 2026-09-14 00:27:57 | Low | 2 |
| 2026-09-13 00:19:54 | Low | 2 |
| 2026-09-12 00:25:17 | Low | 2 |
| 2026-09-11 00:19:22 | Low | 2 |
| 2026-09-10 00:22:44 | Low | 2 |
| 2026-09-09 00:04:09 | Low | 2 |
| 2026-09-08 00:18:08 | Low | 2 |
| 2026-09-07 00:30:15 | Low | 2 |
| 2026-09-06 00:17:06 | Low | 2 |
| 2026-09-05 00:16:27 | Low | 2 |
| 2026-09-04 00:03:13 | Low | 2 |
| 2026-09-03 00:15:47 | Low | 2 |
| 2026-09-02 00:02:31 | Low | 2 |
| 2026-09-01 00:11:19 | Low | 2 |
| 2026-08-31 00:19:57 | Low | 2 |
| 2026-08-30 00:04:14 | Low | 2 |
| 2026-08-29 00:29:17 | Low | 2 |