wok-next view fcron/receipt @ rev 20811

blazekiss: up (20170630); add icons
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jun 13 16:49:32 2018 +0300 (2018-06-13)
parents 7f188676b59c
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="fcron"
4 VERSION="3.0.4"
5 CATEGORY="network"
6 SHORT_DESC="Periodical command scheduler"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="http://fcron.free.fr/"
11 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
12 WGET_URL="http://fcron.free.fr/archives/$TARBALL"
14 BUILD_DEPENDS="perl"
16 compile_rules() {
17 ./configure \
18 --without-sendmail \
19 --with-username=nobody \
20 --with-groupname=nogroup \
21 --with-pam=no \
22 --with-selinux=no \
23 --with-answer-all=no \
24 --with-boot-install=no \
25 --with-editor=/bin/vi \
26 --with-sysfcrontab=yes \
27 $CONFIGURE_ARGS &&
28 make &&
29 make -j1 DESTDIR=$DESTDIR install || return 1
31 install -Dm755 $stuff/fcron $install/etc/init.d/fcron
32 }
34 genpkg_rules() {
35 copy @std
36 TAGS="cron scheduler"
37 }