# HG changeset patch # User Hans-G?nter Theisgen # Date 1647007020 -3600 # Node ID fc5691f50feadd107f3e92658a8a9daae31bb740 # Parent dd7962f7e6b2e785933c934157ccfc05c5e53761 updated incron (0.5.10 -> 0.5.12) diff -r dd7962f7e6b2 -r fc5691f50fea incron/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/incron/description.txt Fri Mar 11 14:57:00 2022 +0100 @@ -0,0 +1,5 @@ +This program is an "inotify cron" system. +It consists of a daemon and a table manipulator. +You can use it a similar way as the regular cron. +The difference is that the inotify cron handles filesystem events +rather than time periods. diff -r dd7962f7e6b2 -r fc5691f50fea incron/receipt --- a/incron/receipt Fri Mar 11 14:31:47 2022 +0100 +++ b/incron/receipt Fri Mar 11 14:57:00 2022 +0100 @@ -1,17 +1,19 @@ # SliTaz package receipt. PACKAGE="incron" -VERSION="0.5.10" +VERSION="0.5.12" CATEGORY="base-system" SHORT_DESC="The inotify cron handles filesystem events." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://inotify.aiken.cz/" -WGET_URL="${WEB_SITE}download/$PACKAGE/$TARBALL" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/ar-/$PACKAGE/archive/refs/tags/$VERSION.tar.gz" + CONFIG_FILES="/etc/incron.d" -DEPENDS="gcc-lib-base" +DEPENDS="" # What is the latest version available today? current_version() @@ -23,17 +25,16 @@ # Rules to configure and make the package. compile_rules() { - sed -i 's|/usr/local|/usr|' Makefile + sed -i 's|/usr/local|/usr|' Makefile make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/sbin $fs/usr - cp -a $install/etc $fs/ - cp -a $install/var $fs/ + cook_copy_folders bin + cook_copy_folders etc + cook_copy_folders sbin + cook_copy_folders var }