daydreamer-editor
maintainer 3ED_0
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package downloads a source archive from Google Drive, a non-standard host, but it is the project's official distribution method; the checksum is verified, and the content is a Java JAR file installed as data, not an executable payload or remote code.
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-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads a source archive from Google Drive, a non-standard host, but it is the project's official distribution method; the checksum is verified, and the content is a Java JAR file installed as data, not an executable payload or remote code.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
source=() URL on a non-standard host
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:14
source=("${pkgname}-${_app_editor[1]}.zip::https://drive.google.com/uc?export=download&id=${_app_editor[0]}"
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: 3ED <krzysztof1987@gmail.com>
2
3
pkgname=daydreamer-editor
4
pkgver=9.3
5
pkgrel=1
6
_app_editor=("1Nly-7fRTXIQcx9FEeVqIIeI508VaM1Aj" "9.3" "DayDreamerEditor9.3.jar")
7
pkgdesc="Editor for Day Dreamer interactive fiction games"
8
arch=('any')
9
url="https://drive.google.com/folderview?id=0Byn3Yo_yFz45ak11MXl6U05mYVE&usp=sharing"
10
license=('CCPL:BY-ND-NC')
11
depends=('java-runtime-common' 'daydreamer')
12
makedepends=('librsvg')
13
14
source=("${pkgname}-${_app_editor[1]}.zip::https://drive.google.com/uc?export=download&id=${_app_editor[0]}"
15
"launcher.sh"
16
"daydreamer-editor.desktop"
17
"daydreamer-editor.svg")
18
sha512sums=('810692ea9e3356ca785ef2519db65dda615c04685761c1a213ff3f32489f4f03d28db74f5489117c4c976f99421941ed93d542ca9b517e2cc0491e062475f0e0'
19
'b02deb777a20e5adba60829a4916b3f13f22a9334d06068d4c73cd72a3863201eba2d6917171479f293cfe87b608538386a335a277876dc47c73604d09598759'
20
'5b840f61cb91c48bb75d4519a29226681aee4d275051af8ae7579f07714dcb0c408f4b5e7b102ded9d8d884789edcce53e5af7565334eea6405e923af755399c'
21
'dc79faf74a9114859d593b2625f4aecafaaaea794145b44dc0419101ac2731537d69db8bd5377767ef9539751b920f2a93358118fa35ed609f1fd4822932255e')
22
23
prepare() {
24
cd "$srcdir"
25
26
msg2 "Creating icons..."
27
# Picture under CC, share and modification allowed, user/author: m-erencelik @deviantart
28
# // vectorized by 3ED (inkscape)
29
30
install -dm755 \
31
"$srcdir/icons/hicolor/scalable/apps/"
32
install -m644 \
33
"$srcdir/daydreamer-editor.svg" \
34
"$srcdir/icons/hicolor/scalable/apps/daydreamer-editor.svg"
35
36
for i in 16x16 24x24 32x32 48x48 64x64 96x96 128x128 256x256; do
37
install -dm755 \
38
"$srcdir/icons/hicolor/$i/apps/"
39
rsvg-convert \
40
-w "${i%%x*}" \
41
-h "${i##*x}" \
42
-f png \
43
-o "$srcdir/icons/hicolor/$i/apps/daydreamer-editor.png" \
44
"$srcdir/daydreamer-editor.svg"
45
done
46
47
48
msg2 "Remove backup files from documentation..."
49
find DayDreamerEditorHelp -name "*~" -delete
50
51
msg2 "Creating launchers..."
52
cat launcher.sh > daydreamer-editor.sh
53
echo 'launch_app "'"${_app_editor[2]}"'"' >> daydreamer-editor.sh
54
55
}
56
57
package() {
58
install -dm755 \
59
"$pkgdir"/usr/{bin,lib/daydreamer,share/{icons,doc/$pkgname,applications}}
60
61
# jar file
62
install -m644 \
63
"$srcdir/${_app_editor[2]}" \
64
"$pkgdir/usr/lib/daydreamer/"
65
# launcher
66
install -m755 \
67
"$srcdir/${pkgname}.sh" \
68
"$pkgdir/usr/bin/${pkgname}"
69
# desktop file
70
install -m644 \
71
"$srcdir/${pkgname}.desktop" \
72
"$pkgdir/usr/share/applications/"
73
# editor's help files
74
install -m644 \
75
DayDreamerEditorHelp.html \
76
"$pkgdir/usr/share/doc/$pkgname/"
77
bsdtar -cf - DayDreamerEditorHelp \
78
| bsdtar -xf - -C "$pkgdir/usr/share/doc/$pkgname/"
79
# icons
80
cd "icons"
81
bsdtar -cf - hicolor \
82
| bsdtar -xf - -C "$pkgdir/usr/share/icons/"
83
}
84
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 2026-07-19 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |
| 2026-07-15 00:09:25 | LOW | 2 |