summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 64bc70604508b1457f9ec8bbc25345f09a3c1cc5 (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
# Maintainer: Dennis Stengele <d.stengele (at) derintendant (dot) de>
pkgname=tuptime
pkgver=3.3.0
pkgrel=2
pkgdesc="Report the historical and statistical running time of system"
arch=('any')
url="https://github.com/rfrail3/tuptime"
license=('GPL')
groups=()
depends=(
          'python2'
          'cron'
        )
makedepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("$pkgname-$pkgver-$pkgrel.tar.gz::https://github.com/rfrail3/tuptime/archive/${pkgver}-${pkgrel}.tar.gz")
noextract=()
sha256sums=('0c48cea06eba819c9c0d9818c59390d16feb8dc3e8d19d2c34e9b157f1fa02ae')

package() {
    cd "$srcdir/$pkgname-${pkgver}-${pkgrel}"

    install -Dm755 "src/tuptime" "$pkgdir/usr/bin/tuptime"
    install -Dm644 "src/systemd/tuptime.service" "$pkgdir/usr/lib/systemd/system/tuptime.service"
    install -Dm644 "src/cron.d/tuptime" "$pkgdir/etc/cron.d/tuptime"
}