blob: 57a3d40a1d0f242b8c9a548595bd43317afe8284 (
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
|
# Maintainer: Christian Hesse <mail@eworm.de>
pkgname=journal-notify
pkgver=0.1.2
pkgrel=2
pkgdesc='Notify about journal log entries'
arch=('i686' 'x86_64')
url='https://github.com/eworm-de/journal-notify'
depends=('libnotify' 'systemd')
optdepends=('gnome-icon-theme: icons in notifications')
makedepends=('discount')
license=('GPL')
validpgpkeys=('BD84DE71F493DF6814B0167254EDC91609BC9183')
source=("https://www.eworm.de/download/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.asc})
sha256sums=('bc780e0388472b5fc650cbf9911f02adf025f1b05aa20cac2fb02ef4c5fe3566'
'SKIP')
build() {
cd ${pkgname}-${pkgver}/
make
}
package() {
cd ${pkgname}-${pkgver}/
make DESTDIR="${pkgdir}" install
}
|