blob: 7febdf593446f9c4325119f3eb1c7a0dda9b26b5 (
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
|
# Maintainer: Rhinoceros <https://aur.archlinux.org/account/rhinoceros>
# Contributor: jjacky
pkgname=kalu-kde
_pkgname=${pkgname%-kde}
pkgver=4.5.2
pkgrel=2
pkgdesc="Upgrade notifier w/ AUR support, watched (AUR) packages, news; supports autohide in KDE Plasma's panel"
arch=('i686' 'x86_64' 'aarch64')
url='https://github.com/Thulinma/kalu'
license=('GPL3+')
depends=('dbus' 'polkit' 'gtk3' 'pacman>=7.0.0' 'pacman<8' 'curl' 'libnotify'
'notification-daemon' 'statusnotifier')
makedepends=('perl' 'groff')
source=("${url}/archive/refs/tags/$pkgver.tar.gz")
install=kalu.install
sha256sums=('fe09c6769aa3406c1a2fe3c7d3d6e2f48e8a78ed4c1ffdcebdff928359b6d5fc')
provides=(${_pkgname})
conflicts=(${_pkgname})
build() {
cd "${_pkgname}-${pkgver}"
./autogen.sh
./configure --prefix=/usr --enable-status-notifier
make
}
package() {
cd "${_pkgname}-${pkgver}"
make DESTDIR="$pkgdir/" install
chmod 750 "$pkgdir/usr/share/polkit-1/rules.d"
chown 0:102 "$pkgdir/usr/share/polkit-1/rules.d"
}
|