blob: b3222ddfa0fa7388b9fa26c2749ff2f651d1e076 (
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
|
# Maintainer: dreieck (https://aur.archlinux.org/account/dreieck)
# Contributor: slact (https://aur.archlinux.org/account/slact)
# Contributor: Jan de Groot <jgc@archlinux.org>
# Contributor: Star Brilliant (https://aur.archlinux.org/account/m13253)
_pkgname=upower
pkgname="${_pkgname}-nocritical-nosystemd-git"
pkgver=1.90.4+10.r1708.20240523.669a1c2
pkgrel=4
pkgdesc="Transitional package to switch to '${_pkgname}-nosystemd-git', since the Ingore action is now included in upstream git. This package can be deleted now."
arch=(
'any'
)
url="http://upower.freedesktop.org"
license=(
'GPL-2.0-or-later'
)
depends=(
"${_pkgname}-nosystemd-git"
)
makedepends=(
'awk'
'pacman'
)
optdepends=()
provides=()
conflicts=()
backup=()
install="upower-nocritical.install"
source=()
sha256sums=()
options+=('emptydirs')
pkgver() {
cd "${srcdir}/${_pkgname}"
pacman -Q "${_pkgname}-nosystemd-git" | awk '{print $2}' | awk -F- '{print $1}'
}
# package() {
# true
# }
|