wok-next view fcron/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="fcron"
4 VERSION="3.2.1"
5 CATEGORY="network"
6 TAGS="cron scheduler"
7 SHORT_DESC="Periodical command scheduler"
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="GPL"
10 WEB_SITE="http://fcron.free.fr/"
12 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
13 WGET_URL="http://fcron.free.fr/archives/$TARBALL"
15 BUILD_DEPENDS="perl readline-dev"
17 compile_rules()
18 {
19 ./configure \
20 --with-answer-all=no \
21 --with-boot-install=no \
22 --with-editor=/bin/vi \
23 --with-groupname=nogroup \
24 --with-pam=no \
25 --with-selinux=no \
26 --without-sendmail \
27 --with-sysfcrontab=yes \
28 --with-username=nobody \
29 $CONFIGURE_ARGS &&
30 make &&
31 make -j1 DESTDIR=$install install || return 1
33 install -Dm755 $stuff/fcron $install/etc/init.d/fcron
34 }
36 genpkg_rules()
37 {
38 copy @std
39 }