che
maintainer Dominiquini
· 1 votes
· scanned 2026-08-18 05:38:33.671963
LOW
View on AUR ↗
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
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.
PKGBUILD
1
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
2
3
_gitauthor=aroum
4
_gitname=che
5
_appname=che
6
_appalias=ch
7
pkgname=${_appname}
8
pkgdesc="💥 Blazing fast terminal file manager written in Rust, based on async I/O with true dual panel mode"
9
10
pkgver=26.8.15
11
pkgrel=1
12
_gitversion=v${pkgver}
13
14
arch=('x86_64' 'aarch64')
15
_barch=('x86_64-unknown-linux-gnu' 'aarch64-unknown-linux-gnu')
16
17
_ghurl="https://github.com/${_gitauthor}/${_gitname}"
18
_ghurlraw="https://raw.githubusercontent.com/${_gitauthor}/${_gitname}/${_gitversion}"
19
url=${_ghurl}
20
21
license=('MIT')
22
23
provides=("${_appname}" "${_appalias}")
24
25
makedepends=('cargo')
26
depends=('glibc' 'libgcc')
27
28
options=('!strip')
29
30
source=("${pkgname}-${pkgver}.tgz::${url}/archive/v${pkgver}.tar.gz")
31
sha256sums=('6dddd0380e722e48161dcfdf6f5b5860899b67ddd7a5aa9725fe758f113273a2')
32
33
34
prepare() {
35
cd "${pkgname}-${pkgver}" || exit
36
37
cargo fetch --locked --target "${CARCH}-unknown-linux-gnu"
38
}
39
40
build() {
41
cd "${pkgname}-${pkgver}" || exit
42
43
export CARGO_TARGET_DIR=target
44
cargo build --frozen --release
45
}
46
47
check() {
48
cd "${pkgname}-${pkgver}" || exit
49
50
export CARGO_TARGET_DIR=target
51
cargo test --frozen --release
52
}
53
54
package() {
55
cd "${pkgname}-${pkgver}" || exit
56
57
install -Dm755 "target/release/${_appname}" "${pkgdir}/usr/bin/${_appname}"
58
install -Dm755 "target/release/${_appalias}" "${pkgdir}/usr/bin/${_appalias}"
59
60
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
61
62
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
63
}
64
65
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 05:38:33 | LOW | 1 |