# HG changeset patch # User Hans-G?nter Theisgen # Date 1647011905 -3600 # Node ID 7f162a2d0d51fbf9f0d6a331c955390dd9a60205 # Parent bacc73f6bb3add74cee51740cff611a0824ff312 updated inotify-tools (3.20.2.2 -> 3.22.1.0) diff -r bacc73f6bb3a -r 7f162a2d0d51 inotify-tools/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/inotify-tools/description.txt Fri Mar 11 16:18:25 2022 +0100 @@ -0,0 +1,5 @@ +Inotify-tools is a C library and a set of command-line programs +for Linux providing a simple interface to inotify. +These programs can be used to monitor and act upon filesystem events. +The programs are written in C and have no dependencies other than a +Linux kernel supporting inotify. diff -r bacc73f6bb3a -r 7f162a2d0d51 inotify-tools/receipt --- a/inotify-tools/receipt Fri Mar 11 15:40:49 2022 +0100 +++ b/inotify-tools/receipt Fri Mar 11 16:18:25 2022 +0100 @@ -1,8 +1,9 @@ # SliTaz package receipt. PACKAGE="inotify-tools" -VERSION="3.20.2.2" +VERSION="3.22.1.0" CATEGORY="system-tools" +TAGS="notify" SHORT_DESC="Set of programs providing a simple interface to inotify." MAINTAINER="pankso@slitaz.org" LICENSE="GPL" @@ -23,6 +24,8 @@ # Rules to configure and make the package. compile_rules() { + sed -i 's|Wshadow|Wno-error=shadow|' src/Makefile.am + ./autogen.sh && ./configure \ --prefix=/usr \ @@ -34,8 +37,6 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }