blob: 11f8872363c482e9543daf21b6039d6e80a377ce (
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: Yauheni Kirylau <actionless dot loveless AT gmail.com>
# shellcheck disable=SC2034,SC2148,SC2154,SC2164
_pkgname=nohang
pkgname=${_pkgname}-git
pkgver=0.1.r622.g16f7db1
pkgrel=2
pkgdesc="A sophisticated low memory handler"
arch=('any')
url="https://github.com/hakavlad/nohang"
license=('MIT')
source=(
"$pkgname::git+https://github.com/hakavlad/nohang.git#branch=master"
)
md5sums=('SKIP')
depends=(
'python'
)
optdepends=(
'libnotify: to show GUI notifications'
'sudo: to show GUI notifications if nohang started with UID=0'
'logrotate: maintaining a separate log is one of the options'
)
conflicts=("${_pkgname}")
backup=(
'etc/nohang/nohang.conf'
'etc/nohang/nohang-desktop.conf'
'etc/logrotate.d/nohang'
)
pkgver() {
cd "${srcdir}/${pkgname}" || exit 2
set -o pipefail
git describe --tags --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
package() {
cd "${srcdir}/${pkgname}" || exit 2
make \
DESTDIR="${pkgdir}" \
BINDIR="/usr/bin" \
CONFDIR="/etc" \
SYSTEMDUNITDIR="/usr/lib/systemd/system" \
MANDIR="/usr/share/man/man1" \
install
}
|