pokeductor
LOW
maintainer Flearly
0 votes
scanned 2026-08-19 03:41:13.749572
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: Huseyn Teymurzade <huseynteymurrr74@gmail.com>
2
pkgname=pokeductor
3
pkgver=0.2.0
4
pkgrel=1
5
pkgdesc="A terminal Pokedex and evolution analyzer with sprite rendering, built with Rust"
6
arch=('x86_64' 'aarch64')
7
url="https://github.com/Huseynteymurzade28/pokeductor"
8
license=('MIT')
9
depends=('gcc-libs' 'glibc' 'openssl')
10
makedepends=('cargo')
11
source=("$pkgname-$pkgver.tar.gz::https://static.crates.io/crates/$pkgname/$pkgname-$pkgver.crate")
12
sha256sums=('b3e638d4e8f6d7fcc19496fcbffa5e13d36d4a0efe860f8208489fc54817bc4a')
13
14
prepare() {
15
cd "$pkgname-$pkgver"
16
# Fetch the crate dependencies here so build() and check() stay offline.
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 --all-features
26
}
27
28
check() {
29
cd "$pkgname-$pkgver"
30
export RUSTUP_TOOLCHAIN=stable
31
cargo test --frozen --all-features
32
}
33
34
package() {
35
cd "$pkgname-$pkgver"
36
install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
37
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
38
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
39
}
40
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-19 03:41:13 | Low | 1 |