cleecode
LOW
maintainer Dominiquini
1 votes
scanned 2026-08-30 19:44:01.063593
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=msavox
4
_gitname=cleecode
5
_appname=${_gitname%code}
6
pkgname=${_gitname}
7
pkgdesc="A terminal IDE written in Rust"
8
9
pkgver=0.13.2
10
pkgrel=1
11
_gitversion=v${pkgver}
12
13
arch=('x86_64' 'aarch64')
14
15
_ghurl="https://github.com/${_gitauthor}/${_gitname}"
16
_ghurlraw="https://raw.githubusercontent.com/${_gitauthor}/${_gitname}/${_gitversion}"
17
url=${_ghurl}
18
19
license=('MIT')
20
21
provides=("${_appname}")
22
23
makedepends=('cargo')
24
25
options=('!strip' '!lto')
26
27
source=("${pkgname}-${pkgver}.tgz::${_ghurl}/archive/${_gitversion}.tar.gz")
28
sha256sums=('6eb5068735b5139e029c3fc59ed45ec20113439643f0c5c077ddc6ba4abb1351')
29
30
31
prepare() {
32
cd "${pkgname}-${pkgver}" || exit
33
34
cargo fetch --locked --target "${CARCH}-unknown-linux-gnu"
35
}
36
37
build() {
38
cd "${pkgname}-${pkgver}" || exit
39
40
export CARGO_TARGET_DIR=target
41
cargo build --frozen --release
42
}
43
44
check() {
45
cd "${pkgname}-${pkgver}" || exit
46
47
export CARGO_TARGET_DIR=target
48
cargo test --frozen --release -- \
49
--skip "terminal_panel::tests::a_program_that_asked_for_the_mouse_gets_the_buttons" \
50
--skip "terminal_panel::tests::a_program_that_asked_for_the_mouse_gets_the_wheel"
51
}
52
53
package() {
54
cd "${pkgname}-${pkgver}" || exit
55
56
install -Dm755 target/release/${_appname} -t "${pkgdir}/usr/bin/"
57
58
install -Dm644 docs/${_appname}.1 -t "${pkgdir}/usr/share/man/man1/"
59
60
install -Dm644 assets/fonts/*.ttf -t "${pkgdir}/usr/share/fonts/TTF/"
61
62
install -Dm644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
63
64
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
65
}
66
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-30 19:44:01 | Low | 1 |