blob: be4e0c04a9b96c6bcea5979cb51c4d3713161c73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Maintainer: Robin Candau <antiz@archlinux.org>
pkgname=arch-update
pkgver=3.19.4
pkgrel=1
pkgdesc="An interactive update notifier & applier that assists you with important pre / post update tasks"
url="https://github.com/Antiz96/arch-update"
arch=('any')
license=('GPL-3.0-or-later')
depends=('bash' 'systemd' 'pacman' 'pacman-contrib' 'archlinux-contrib' 'curl' 'fakeroot'
'htmlq' 'diffutils' 'hicolor-icon-theme' 'python' 'python-pyqt6' 'qt6-svg' 'glib2' 'xdg-utils')
makedepends=('scdoc')
checkdepends=('bats')
optdepends=('paru: AUR Packages support'
'yay: AUR Packages support'
'pikaur: AUR Packages support'
'flatpak: Flatpak Packages support'
'libnotify: Desktop notifications support on new available updates'
'alhp-utils: Check for ALHP build queue or outdated mirrors'
'vim: Default diff program for pacdiff'
'neovim: Default diff program for pacdiff if EDITOR=nvim'
'sudo: Privilege elevation'
'sudo-rs: Privilege elevation'
'opendoas: Privilege elavation')
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
sha256sums=('ff983d3baf12c232a7cf8359d8a759b21d2c679f2ef61e0fd847dfbe4a0473d8')
prepare() {
cd "${pkgname}-${pkgver}"
make clean
}
build() {
cd "${pkgname}-${pkgver}"
make
}
check() {
cd "${pkgname}-${pkgver}"
make test
}
package() {
cd "${pkgname}-${pkgver}"
make PREFIX=/usr DESTDIR="${pkgdir}" install
}
|