summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 51be8bacf8c8dff39605706a1c405ee39300602f (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: Konstantin Stepanov <me@kstep.me>
pkgname=systemd-cron-next
pkgver=1.0.0.rc2
_gitver=1.0.0-rc2
pkgrel=1
pkgdesc="systemd generator to generate timers/services from crontab and anacrontab files"
url="https://github.com/systemd-cron/systemd-cron-next"
arch=('any')
license=('GPL3')
depends=('systemd')
makedepends=('rust')
provides=('cron' 'anacron')
replaces=('cron' 'anacron')
source=("https://github.com/systemd-cron/systemd-cron-next/archive/v${_gitver}.zip")
md5sums=('2784d761ddd1e0a2ebcca48984281145')

build() {
    cd "${srcdir}/${pkgname}-${_gitver}"
    if which multirust; then
        multirust override stable
    fi
    ./configure --prefix="$pkgdir/usr"
    make build
}

package() {
    cd "${srcdir}/${pkgname}-${_gitver}"
    make install
}