wok-6.x rev 24665
updated incron (0.5.10 -> 0.5.12)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Mar 11 14:57:00 2022 +0100 (2022-03-11) |
parents | dd7962f7e6b2 |
children | bacc73f6bb3a |
files | incron/description.txt incron/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/incron/description.txt Fri Mar 11 14:57:00 2022 +0100 1.3 @@ -0,0 +1,5 @@ 1.4 +This program is an "inotify cron" system. 1.5 +It consists of a daemon and a table manipulator. 1.6 +You can use it a similar way as the regular cron. 1.7 +The difference is that the inotify cron handles filesystem events 1.8 +rather than time periods.
2.1 --- a/incron/receipt Fri Mar 11 14:31:47 2022 +0100 2.2 +++ b/incron/receipt Fri Mar 11 14:57:00 2022 +0100 2.3 @@ -1,17 +1,19 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="incron" 2.7 -VERSION="0.5.10" 2.8 +VERSION="0.5.12" 2.9 CATEGORY="base-system" 2.10 SHORT_DESC="The inotify cron handles filesystem events." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL2" 2.13 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.14 WEB_SITE="http://inotify.aiken.cz/" 2.15 -WGET_URL="${WEB_SITE}download/$PACKAGE/$TARBALL" 2.16 + 2.17 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.18 +WGET_URL="https://github.com/ar-/$PACKAGE/archive/refs/tags/$VERSION.tar.gz" 2.19 + 2.20 CONFIG_FILES="/etc/incron.d" 2.21 2.22 -DEPENDS="gcc-lib-base" 2.23 +DEPENDS="" 2.24 2.25 # What is the latest version available today? 2.26 current_version() 2.27 @@ -23,17 +25,16 @@ 2.28 # Rules to configure and make the package. 2.29 compile_rules() 2.30 { 2.31 - sed -i 's|/usr/local|/usr|' Makefile 2.32 + sed -i 's|/usr/local|/usr|' Makefile 2.33 make && 2.34 - make DESTDIR=$DESTDIR install 2.35 + make install DESTDIR=$DESTDIR 2.36 } 2.37 2.38 # Rules to gen a SliTaz package suitable for Tazpkg. 2.39 genpkg_rules() 2.40 { 2.41 - mkdir -p $fs/usr 2.42 - cp -a $install/usr/bin $fs/usr 2.43 - cp -a $install/usr/sbin $fs/usr 2.44 - cp -a $install/etc $fs/ 2.45 - cp -a $install/var $fs/ 2.46 + cook_copy_folders bin 2.47 + cook_copy_folders etc 2.48 + cook_copy_folders sbin 2.49 + cook_copy_folders var 2.50 }