wok-next view fcron/receipt @ rev 21427

updated qt4 (4.8.6 -> 4.8.7)
author Hans-G?nter Theisgen
date Tue May 05 08:11:24 2020 +0100 (2020-05-05)
parents 757d032c55c7
children d8bae70f9c2d
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="devel@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=$install 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 }