backuptousb-git
maintainer charovalderrama
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from the project's own GitHub repository, which is normal for AUR packages; the 'SKIP' checksum is acceptable for git sources, and no malicious behavior is present.
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 project's own GitHub repository, which is normal for AUR packages; the 'SKIP' checksum is acceptable for git sources, and no malicious behavior is present.
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: Krzysztof Demir Kuźniak <krzysztofdemirkuzniak@gmail.com>
2
pkgname=backuptousb-git
3
pkgver=0.1.0.alpha.git20260201
4
pkgrel=1
5
pkgdesc="Backup your home directory to USB or any folder with optional SSH copy, large file deletion, and logging. GTK4 GUI with dynamic About dialog."
6
arch=('x86_64')
7
url="https://github.com/Kuznix/backuptousb"
8
license=('GPL3')
9
depends=('gtk4' 'glib2')
10
makedepends=('rust' 'cargo' 'git')
11
provides=('backuptousb')
12
conflicts=('backuptousb')
13
source=("git+https://github.com/Kuznix/backuptousb.git")
14
sha256sums=('SKIP')
15
16
# Auto-generate pkgver with latest commit date (YYYYMMDD)
17
pkgver() {
18
cd "$srcdir/backuptousb"
19
# hyphen version instead of '+' for makepkg compatibility
20
echo "0.1.0.alpha.git$(git log -1 --format=%cd --date=format:%Y%m%d)"
21
}
22
23
build() {
24
cd "$srcdir/backuptousb"
25
cargo add gdk4
26
cargo build --release
27
}
28
29
package() {
30
cd "$srcdir/backuptousb"
31
32
# Install binary
33
install -Dm755 target/release/backuptousb "$pkgdir/usr/bin/backuptousb"
34
35
# Install desktop file
36
install -Dm644 extra/linux/backuptousb.desktop "$pkgdir/usr/share/applications/backuptousb.desktop"
37
38
# Install icons
39
install -Dm644 extra/logo/backuptousb-48.png "$pkgdir/usr/share/icons/hicolor/48x48/apps/backuptousb.png"
40
install -Dm644 extra/logo/backuptousb-64.png "$pkgdir/usr/share/icons/hicolor/64x64/apps/backuptousb.png"
41
install -Dm644 extra/logo/backuptousb-128.png "$pkgdir/usr/share/icons/hicolor/128x128/apps/backuptousb.png"
42
install -Dm644 extra/logo/backuptousb-256.png "$pkgdir/usr/share/icons/hicolor/256x256/apps/backuptousb.png"
43
install -Dm644 extra/logo/backuptousb-512.png "$pkgdir/usr/share/icons/hicolor/512x512/apps/backuptousb.png"
44
}
45
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 17:15:21 | MEDIUM | 1 |
| 2026-06-18 16:11:54 | CLEAN | 0 |