trello-tui
LOW
maintainer ural
0 votes
scanned 2026-09-23 11:40:33.758457
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: Ural <uralkemal@gmail.com>
2
pkgname=trello-tui
3
pkgver=0.1.0
4
pkgrel=1
5
pkgdesc='Keyboard-driven Trello client for the terminal with vim-style bindings'
6
arch=('x86_64' 'aarch64')
7
url='https://github.com/ural89/trello-tui'
8
license=('MIT')
9
depends=('gcc-libs' 'glibc')
10
makedepends=('cargo')
11
options=('!lto')
12
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
13
sha256sums=('24a61fc7f1abcee1ca4e03317b2bb4995f2a73e9c064466da9b399ee76cdfa84')
14
15
prepare() {
16
cd "$pkgname-$pkgver"
17
export RUSTUP_TOOLCHAIN=stable
18
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
19
}
20
21
build() {
22
cd "$pkgname-$pkgver"
23
export RUSTUP_TOOLCHAIN=stable
24
export CARGO_TARGET_DIR=target
25
cargo build --frozen --release
26
}
27
28
check() {
29
cd "$pkgname-$pkgver"
30
export RUSTUP_TOOLCHAIN=stable
31
cargo test --frozen
32
}
33
34
package() {
35
cd "$pkgname-$pkgver"
36
install -Dm755 target/release/$pkgname -t "$pkgdir/usr/bin/"
37
install -Dm644 README.md -t "$pkgdir/usr/share/doc/$pkgname/"
38
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
39
}
40
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-23 11:40:33 | Low | 1 |