unraid-usb-creator-git
maintainer FabioLolix
· 0 votes
· scanned 2026-08-18 00:03:42.021799
LOW
View on AUR ↗
Why flagged
The package builds from the official project's GitHub repository, which is a normal and trusted AUR practice; the recent maintainer change does not introduce inherent risk as the source remains verifiable and no untrusted binaries or scripts are executed.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package builds from the official project's GitHub repository, which is a normal and trusted AUR practice; the recent maintainer change does not introduce inherent risk as the source remains verifiable and no untrusted binaries or scripts are executed.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
Recently orphaned & re-adopted
orphaned_readopted
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
PKGBUILD
1
# Maintainer: Bence Toth <oss at bnctth dot dev>
2
# Based on Chocobo1's rpi-image-git package, thanks!
3
4
pkgname=unraid-usb-creator-git
5
pkgver=1.0.0.r19.g166e950
6
pkgrel=1
7
pkgdesc="Unraid os usb creator utility"
8
arch=('i686' 'x86_64')
9
url="https://github.com/unraid/usb-creator-next"
10
license=('Apache')
11
depends=('glibc' 'curl' 'hicolor-icon-theme' 'libarchive' 'openssl' 'qt5-base' 'qt5-declarative' 'qt5-quickcontrols2' 'qt5-svg' 'zlib')
12
makedepends=('git' 'cmake' 'qt5-tools')
13
provides=("unraid-usb-creator=$pkgver")
14
conflicts=('unraid-usb-creator')
15
source=("git+https://github.com/unraid/usb-creator-next.git")
16
sha256sums=('SKIP')
17
18
19
pkgver() {
20
cd "usb-creator-next"
21
22
_tag=$(git tag -l --sort -v:refname | sed '/rc[0-9]*/d' | head -n1)
23
_rev=$(git rev-list --count $_tag..HEAD)
24
_hash=$(git rev-parse --short HEAD)
25
printf "%s.r%s.g%s" "$_tag" "$_rev" "$_hash" | sed 's/^v//'
26
}
27
28
build() {
29
cd "usb-creator-next"
30
31
cmake \
32
-B "_build" \
33
-DCMAKE_BUILD_TYPE=Release \
34
-DCMAKE_INSTALL_PREFIX="/usr" \
35
src
36
make -C "_build"
37
}
38
39
package() {
40
cd "usb-creator-next"
41
42
make -C "_build" DESTDIR="$pkgdir" install
43
install -Dm644 "license.txt" -t "$pkgdir/usr/share/licenses/unraid-usb-creator"
44
}
45
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 00:03:42 | LOW | 2 |
| 2026-08-17 00:18:29 | LOW | 2 |
| 2026-08-16 13:32:24 | MEDIUM | 1 |
| 2026-08-16 11:32:23 | MEDIUM | 1 |
| 2026-06-18 16:11:54 | CLEAN | 0 |