add new pkgbuild file

This commit is contained in:
Konstantin Stepanov 2015-07-06 01:31:09 +03:00
parent 37e6ba74be
commit 0d746b318f
3 changed files with 25 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1 @@
pkg/
target/

1
pkg/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*

24
pkg/PKGBUILD Normal file
View File

@ -0,0 +1,24 @@
# Maintainer: Konstantin Stepanov <me@kstep.me>
pkgname=systemd-crontab-generator
pkgver=0.9.0
pkgrel=1
pkgdesc="systemd generator to generate timers/services from crontab and anacrontab files"
url="https://github.com/systemd-cron/systemd-crontab-generator"
arch=('any')
license=('GPL3')
depends=('systemd')
makedepends=('rust')
provides=('cron' 'anacron')
replaces=('cron' 'anacron')
source=('https://github.com/systemd-cron/systemd-crontab-generator/archive/master.zip')
md5sums=('SKIP')
build() {
cd "$srcdir/systemd-crontab-generator-master"
make release
}
package() {
cd "$srcdir/systemd-crontab-generator-master"
make install PREFIX="$pkgdir/usr"
}