realcopy
maintainer rDEV
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from source hosted on GitHub under the maintainer's account, which is typical for AUR packages; the only concerns are the SKIP'd checksum and low votes/newness, but it does not execute remote code or install binaries from untrusted sources.
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 source hosted on GitHub under the maintainer's account, which is typical for AUR packages; the only concerns are the SKIP'd checksum and low votes/newness, but it does not execute remote code or install binaries from untrusted sources.
PKGBUILD
1
# Maintainer: Proshiv85 <proshiv85@example.com>
2
pkgname=realcopy
3
pkgver=1.0.0
4
pkgrel=1
5
pkgdesc="GTK4 file copy utility that actually writes to slow USB drives - no more kernel cache lies"
6
arch=('x86_64')
7
url="https://github.com/proshiv85-byte/realcopy"
8
license=('MIT')
9
depends=('gtk4')
10
makedepends=('gcc' 'pkgconf')
11
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
12
sha256sums=('SKIP')
13
14
build() {
15
cd "$pkgname-$pkgver"
16
gcc -O2 -o realcopy-gui main.c $(pkg-config --cflags --libs gtk4)
17
}
18
19
package() {
20
cd "$pkgname-$pkgver"
21
22
install -Dm755 realcopy-gui "$pkgdir/usr/bin/realcopy-gui"
23
24
mkdir -p "$pkgdir/usr/share/applications"
25
cat > "$pkgdir/usr/share/applications/realcopy.desktop" <<EOF
26
[Desktop Entry]
27
Type=Application
28
Name=RealCopy
29
Comment=Reliable file copy to slow USB drives
30
Exec=realcopy-gui
31
Terminal=false
32
Categories=Utility;FileTools;
33
EOF
34
}
35
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 15:39:03 | LOW | 2 |