arch-update-cli
LOW
maintainer Antiz
1 votes
scanned 2026-09-14 23:18:17.509238
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: Robin Candau <antiz@archlinux.org>
2
3
pkgname=arch-update-cli
4
_pkgname="${pkgname%-cli}"
5
pkgver=4.4.0
6
pkgrel=1
7
pkgdesc="An interactive update notifier & applier that assists you with important pre / post update tasks (cli version)"
8
url="https://github.com/Antiz96/arch-update"
9
arch=('any')
10
license=('GPL-3.0-or-later')
11
depends=('bash' 'systemd' 'pacman' 'pacman-contrib' 'archlinux-contrib' 'curl' 'fakeroot' 'htmlq' 'diffutils')
12
makedepends=('scdoc')
13
checkdepends=('bats')
14
optdepends=('paru: AUR Packages support'
15
'yay: AUR Packages support'
16
'pikaur: AUR Packages support'
17
'flatpak: Flatpak Packages support'
18
'libnotify: Desktop notifications support on new available updates'
19
'alhp-utils: Check for ALHP build queue or outdated mirrors'
20
'vim: Default diff program for pacdiff'
21
'neovim: Default diff program for pacdiff if EDITOR=nvim'
22
'sudo: Privilege elevation'
23
'sudo-rs: Privilege elevation'
24
'opendoas: Privilege elavation')
25
provides=("${_pkgname}")
26
conflicts=("${_pkgname}")
27
source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
28
sha256sums=('13796df44c2e6137d193aa274da5d979bb386589a3747281b8ca1b42929562fa')
29
30
prepare() {
31
cd "${_pkgname}-${pkgver}"
32
make clean
33
}
34
35
build() {
36
cd "${_pkgname}-${pkgver}"
37
make WITH_TRAY=false
38
}
39
40
check() {
41
cd "${_pkgname}-${pkgver}"
42
make test
43
}
44
45
package() {
46
cd "${_pkgname}-${pkgver}"
47
make PREFIX=/usr DESTDIR="${pkgdir}" install WITH_TRAY=false
48
49
# Remove unecessary elements for a CLI usage
50
rm -rfv "${pkgdir}/usr/share/applications/" "${pkgdir}/usr/share/icons/"
51
}
52
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-14 23:18:17 | Low | 1 |
| 2026-09-14 21:18:01 | Low | 1 |