blob: 8863859dce19137a3c9bd535c9f77349911ca305 (
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
|
# Maintainer: Vianney Bouchaud <aur dot vianney at bouchaud dot org>
pkgname=kured-sentinel
pkgdesc="Sentinel script for Kured - Kubernetes Reboot Daemon"
pkgver=2.0.1
pkgrel=1
arch=("any")
url="https://github.com/vbouchaud/aur/tree/main/kured-sentinel"
license=("MIT")
sha256sums=(
35e3cbe726e28f2f624acbe4fce8af09715e55537df7aa22ac89f00cde399515
aa17f62b18aa1909168b14c0e42b0a2988b6791a5c1658d349ab0a4932bacd1a
)
source=(
LICENSE::https://bouchaud.org/misc/MIT.txt
kured-sentinel
)
package() {
install -D -m0755 "$srcdir/kured-sentinel" "$pkgdir/usr/bin/kured-sentinel"
install -D -m0644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|