summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 64ffb2e9ded4c187c08cc8f678c73c571d9cd510 (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
# Maintainer: Adrien Oliva <yapbreak@yapbreak.fr>
pkgname="pacmanhealth-git"
pkgver="1.1.0"
pkgrel="1"
pkgdesc="Pacman health monitoring system"
arch=('any')
url="https://redmine.yapbreak.fr/projects/pacman-health"
license=('GPL3')
depends=('pacman' 'sed' 'coreutils' 'util-linux' 'sudo')
optdepends=('postfix: send report by mail'
            'libnotify: get desktop notification'
            'recode: get diff in html mail version')
makedepends=()
conflicts=('pacmanhealth')
replaces=()
backup=('etc/pacmanhealth.conf')
source=('git+https://redmine.yapbreak.fr/pacmanhealth.git')
noextract=()
md5sums=('SKIP')

build() {
    cd "${srcdir}/pacmanhealth"
    ./autogen.sh
    ./configure
    make
}

package() {
    cd "${srcdir}/pacmanhealth"
    make DESTDIR="${pkgdir}/" install
}