mirador
LOW
maintainer Dominiquini
1 votes
scanned 2026-09-01 03:46:42.335607
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=jchultarsky
4
_gitname=mirador
5
_appname=${_gitname}
6
pkgname=${_appname}
7
pkgdesc="An opinionated personal dashboard for your terminal"
8
9
pkgver=1.9.0
10
pkgrel=1
11
_gitversion=v${pkgver}
12
13
arch=('x86_64')
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=('!lto' '!strip')
26
27
source=("${pkgname}-${pkgver}.tgz::${_ghurl}/archive/${_gitversion}.tar.gz")
28
sha256sums=('748f8afff673812502cbbd9dfe6366171f314b2a71c24ccc73f4923015b6ebfe')
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
}
50
51
package() {
52
cd "${pkgname}-${pkgver}" || exit
53
54
install -Dm755 "target/release/${_appname}" "${pkgdir}/usr/bin/${_appname}"
55
56
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
57
58
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
59
}
60
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-01 03:46:42 | Low | 1 |