wok rev 24232
updated perl-linux-inotify2 (2.2 -> 2.3)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Jan 02 06:53:37 2022 +0100 (2022-01-02) |
parents | f9c7aea3d4f2 |
children | 2ebf9ccf8439 |
files | perl-linux-inotify2/description.txt perl-linux-inotify2/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-linux-inotify2/description.txt Sun Jan 02 06:53:37 2022 +0100 1.3 @@ -0,0 +1,10 @@ 1.4 +This module implements an interface to the Linux 2.6.13 and later 1.5 +Inotify file or directory change notification system. 1.6 + 1.7 +It has a number of advantages over the Linux::Inotify module: 1.8 + 1.9 +- it is portable (Linux::Inotify only works on x86) 1.10 +- the equivalent of fullname works correctly 1.11 +- it is better documented 1.12 +- it has callback-style interface, which is better suited for 1.13 + integration.
2.1 --- a/perl-linux-inotify2/receipt Sun Jan 02 06:50:51 2022 +0100 2.2 +++ b/perl-linux-inotify2/receipt Sun Jan 02 06:53:37 2022 +0100 2.3 @@ -1,12 +1,13 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="perl-linux-inotify2" 2.7 -VERSION="2.2" 2.8 +VERSION="2.3" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Perl extension Linux::Inotify2." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL" 2.13 -WEB_SITE="https://metacpan.org/release/Linux-Inotify2" 2.14 +WEB_SITE="https://metacpan.org/pod/Linux::Inotify2" 2.15 +REPOLOGY="perl:linux-inotify2" 2.16 2.17 SOURCE="Linux-Inotify2" 2.18 TARBALL="$SOURCE-$VERSION.tar.gz" 2.19 @@ -26,12 +27,11 @@ 2.20 { 2.21 perl Makefile.PL && 2.22 make && 2.23 - make DESTDIR=$DESTDIR install 2.24 + make install DESTDIR=$DESTDIR 2.25 } 2.26 2.27 # Rules to gen a SliTaz package suitable for Tazpkg. 2.28 genpkg_rules() 2.29 { 2.30 - mkdir -p $fs/usr 2.31 - cp -a $install/usr/lib $fs/usr 2.32 + cook_copy_folders lib 2.33 }