imrad-git
LOW
maintainer SCDevel
0 votes
scanned 2026-09-08 05:16:12.985842
Why flagged
The package builds from the project's own Git repository with no obfuscated or suspicious downloads; the low severity is due to few votes and recent upload, not code risk.
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 builds from the project's own Git repository with no obfuscated or suspicious downloads; the low severity is due to few votes and recent upload, not code risk.
PKGBUILD
1
# Maintainer: SCDevel <root@scdevel.net>
2
3
pkgname=imrad-git
4
pkgver=r560.gcc85b51
5
pkgrel=1
6
pkgdesc="GUI builder for Dear ImGui"
7
arch=('x86_64')
8
url="https://github.com/tpecholt/imrad"
9
license=('GPL-3.0-only')
10
11
depends=(
12
'gtk3'
13
'openssl'
14
'zlib'
15
)
16
17
makedepends=(
18
'git'
19
'cmake'
20
'ninja'
21
)
22
23
source=(
24
"git+https://github.com/tpecholt/imrad.git"
25
"imrad.desktop"
26
)
27
28
sha256sums=(
29
'SKIP'
30
'9a705251d5d6c2d8ddbd62e6b49ccb929d5db93a327dfc224413e30ea60607cb'
31
)
32
33
pkgver() {
34
cd "$srcdir/imrad"
35
36
printf "r%s.g%s" \
37
"$(git rev-list --count HEAD)" \
38
"$(git rev-parse --short=7 HEAD)"
39
}
40
41
prepare() {
42
cd "$srcdir/imrad"
43
44
git submodule update --init --recursive
45
}
46
47
build() {
48
cd "$srcdir/imrad"
49
50
cmake -B build \
51
-DCMAKE_BUILD_TYPE=Release \
52
-DCMAKE_INSTALL_PREFIX="$srcdir/install"
53
54
cmake --build build
55
cmake --install build
56
}
57
58
package() {
59
cd "$srcdir/imrad"
60
61
install -Dm755 \
62
"$srcdir/install/latest/imrad" \
63
"$pkgdir/usr/lib/imrad/imrad"
64
65
cp -a \
66
"$srcdir/install/latest/style" \
67
"$pkgdir/usr/lib/imrad/"
68
69
cp -a \
70
"$srcdir/install/latest/template" \
71
"$pkgdir/usr/lib/imrad/"
72
73
install -d "$pkgdir/usr/bin"
74
ln -s /usr/lib/imrad/imrad "$pkgdir/usr/bin/imrad"
75
76
install -Dm644 \
77
"$srcdir/install/latest/CHANGELOG.md" \
78
"$pkgdir/usr/share/doc/imrad/CHANGELOG.md"
79
80
install -Dm644 \
81
"$srcdir/imrad/LICENSE" \
82
"$pkgdir/usr/share/licenses/imrad/LICENSE"
83
84
install -Dm644 \
85
"$srcdir/imrad/src/icon.png" \
86
"$pkgdir/usr/share/icons/hicolor/512x512/apps/imrad.png"
87
88
install -Dm644 \
89
"$srcdir/imrad.desktop" \
90
"$pkgdir/usr/share/applications/imrad.desktop"
91
}
92
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-08 05:16:12 | Low | 2 |