fileminal-git
maintainer berkeoruc
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from source via a Git repository hosted on the maintainer's GitHub; while the source is not from a major vendor and has few votes, it is a transparent build of a Rust project with no obfuscated code, remote execution, or untrusted prebuilt binaries.
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 via a Git repository hosted on the maintainer's GitHub; while the source is not from a major vendor and has few votes, it is a transparent build of a Rust project with no obfuscated code, remote execution, or untrusted prebuilt binaries.
PKGBUILD
1
# Maintainer: Berke Oruc <berke3oruc@gmail.com>
2
# Contributor: Berke Oruc <berke3oruc@gmail.com>
3
# Arch: x86_64 aarch64
4
5
pkgname=fileminal-git
6
pkgver=0.1.0
7
pkgrel=2
8
pkgdesc="A brutally fast, visually stunning TUI file explorer for Linux"
9
arch=('x86_64' 'aarch64')
10
url="https://github.com/berkeoruc/fileminal"
11
license=('MIT')
12
depends=(
13
'glibc'
14
'gcc-libs'
15
'zlib'
16
'oniguruma'
17
)
18
makedepends=('cargo' 'git')
19
optdepends=(
20
'xdg-utils: open files with default applications'
21
'sixel-support: image preview with sixel terminals'
22
)
23
provides=('fileminal')
24
conflicts=('fileminal')
25
source=("$pkgname::git+https://github.com/berkeoruc/fileminal.git")
26
sha256sums=('SKIP')
27
28
pkgver() {
29
cd "$srcdir/$pkgname"
30
git describe --long --tags --always 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' || echo "$pkgver"
31
}
32
33
prepare() {
34
cd "$srcdir/$pkgname"
35
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
36
}
37
38
build() {
39
cd "$srcdir/$pkgname"
40
export RUSTFLAGS="-C target-cpu=native"
41
export CARGO_PROFILE_RELEASE_LTO=fat
42
export CARGO_PROFILE_RELEASE_CODEGEN_UNITS=1
43
export CARGO_PROFILE_RELEASE_PANIC=abort
44
export CARGO_PROFILE_RELEASE_STRIP=symbols
45
export CARGO_PROFILE_RELEASE_DEBUG=line-tables-only
46
cargo build --frozen --release
47
}
48
49
check() {
50
cd "$srcdir/$pkgname"
51
cargo test --frozen --release
52
}
53
54
package() {
55
cd "$srcdir/$pkgname"
56
install -Dm755 "target/release/fileminal" "$pkgdir/usr/bin/fileminal"
57
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/fileminal/LICENSE"
58
install -Dm644 README.md "$pkgdir/usr/share/doc/fileminal/README.md"
59
}
60
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 01:31:24 | LOW | 2 |