archman
LOW
maintainer Dominiquini
1 votes
scanned 2026-09-05 16:00:23.828148
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=ankur3-101106
4
_gitname=pacman-utils
5
_appname=archman
6
pkgname=${_appname}
7
pkgdesc="All available pacman options combined into one interactive script"
8
9
pkgver=2.0.0
10
pkgrel=1
11
_gitversion=v${pkgver}
12
13
arch=('x86_64' 'aarch64')
14
_barch=('linux-x86_64' 'linux-aarch64')
15
16
_ghurl="https://github.com/${_gitauthor}/${_gitname}"
17
_ghurlraw="https://raw.githubusercontent.com/${_gitauthor}/${_gitname}/${_gitversion}"
18
url=${_ghurl}
19
20
license=('GPL-2.0')
21
22
provides=("${_appname}")
23
24
depends=('pacman' 'pacman-contrib')
25
optdepends=('yay' 'paru' 'reflector')
26
makedepends=('cargo')
27
28
options=('!strip')
29
30
source=("${pkgname}-${pkgver}.tgz::${url}/archive/v${pkgver}.tar.gz")
31
sha256sums=('72c198e84d22e5bf3eaf2c45e477738a50532f68b97d84491baa9cfd496de182')
32
33
34
prepare() {
35
cd "${_gitname}-${pkgver}" || exit
36
37
cargo fetch --locked --target "${CARCH}-unknown-linux-gnu"
38
}
39
40
build() {
41
cd "${_gitname}-${pkgver}" || exit
42
43
export CARGO_TARGET_DIR=target
44
cargo build --frozen --release
45
}
46
47
check() {
48
cd "${_gitname}-${pkgver}" || exit
49
50
export CARGO_TARGET_DIR=target
51
cargo test --frozen --release
52
}
53
54
package() {
55
cd "${_gitname}-${pkgver}" || exit
56
57
install -Dm755 "target/release/${_appname}" "${pkgdir}/usr/bin/${_appname}"
58
59
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
60
61
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
62
}
63
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-05 16:00:23 | Low | 1 |