wok-next rev 21643
updated fcron (3.0.4 -> 3.2.1)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Jun 26 16:29:19 2020 +0100 (2020-06-26) |
parents | bb57d318dd87 |
children | bfb8a570f691 |
files | fcron/receipt |
line diff
1.1 --- a/fcron/receipt Fri Jun 26 16:15:19 2020 +0100 1.2 +++ b/fcron/receipt Fri Jun 26 16:29:19 2020 +0100 1.3 @@ -1,37 +1,39 @@ 1.4 # SliTaz package receipt v2. 1.5 1.6 PACKAGE="fcron" 1.7 -VERSION="3.0.4" 1.8 +VERSION="3.2.1" 1.9 CATEGORY="network" 1.10 +TAGS="cron scheduler" 1.11 SHORT_DESC="Periodical command scheduler" 1.12 -MAINTAINER="devel@slitaz.org" 1.13 +MAINTAINER="maintainer@slitaz.org" 1.14 LICENSE="GPL" 1.15 WEB_SITE="http://fcron.free.fr/" 1.16 1.17 TARBALL="$PACKAGE-$VERSION.src.tar.gz" 1.18 WGET_URL="http://fcron.free.fr/archives/$TARBALL" 1.19 1.20 -BUILD_DEPENDS="perl" 1.21 +BUILD_DEPENDS="perl readline-dev" 1.22 1.23 -compile_rules() { 1.24 - ./configure \ 1.25 - --without-sendmail \ 1.26 - --with-username=nobody \ 1.27 - --with-groupname=nogroup \ 1.28 - --with-pam=no \ 1.29 - --with-selinux=no \ 1.30 - --with-answer-all=no \ 1.31 - --with-boot-install=no \ 1.32 - --with-editor=/bin/vi \ 1.33 - --with-sysfcrontab=yes \ 1.34 +compile_rules() 1.35 +{ 1.36 + ./configure \ 1.37 + --with-answer-all=no \ 1.38 + --with-boot-install=no \ 1.39 + --with-editor=/bin/vi \ 1.40 + --with-groupname=nogroup \ 1.41 + --with-pam=no \ 1.42 + --with-selinux=no \ 1.43 + --without-sendmail \ 1.44 + --with-sysfcrontab=yes \ 1.45 + --with-username=nobody \ 1.46 $CONFIGURE_ARGS && 1.47 make && 1.48 make -j1 DESTDIR=$install install || return 1 1.49 1.50 - install -Dm755 $stuff/fcron $install/etc/init.d/fcron 1.51 + install -Dm755 $stuff/fcron $install/etc/init.d/fcron 1.52 } 1.53 1.54 -genpkg_rules() { 1.55 +genpkg_rules() 1.56 +{ 1.57 copy @std 1.58 - TAGS="cron scheduler" 1.59 }