blob: 624c82b30de830f079f9ae262e3b19365185d5e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Zesko
pkgname=journalctl-desktop-notification
pkgver=1.4.0
pkgrel=1
pkgdesc="Notifies you on the desktop when any error message appears in the Journalctl log."
arch=('any')
url="https://gitlab.com/Zesko/journalctl-desktop-notification"
license=('GPL3')
depends=('libnotify' 'systemd')
optdepends=('dunst')
makedepends=('git')
provides=("${pkgname}")
conflicts=("${pkgname}-git")
backup=("etc/${pkgname}.conf")
source=("$pkgname-$pkgver.tar.gz::$url/-/archive/$pkgver/$pkgname-$pkgver.tar.gz")
sha256sums=('7b697ad9660d0deb4b87b909e773435759ce1af723b1e7c99f50e2f36be412bc')
package() {
cd "$srcdir/$pkgname-$pkgver"
install -dm 755 "usr/share/doc/${pkgname}/"
cp -r screenshots README.md CHANGELOG.md "usr/share/doc/${pkgname}/"
cp -r usr etc "$pkgdir"
}
|