# HG changeset patch # User Hans-G?nter Theisgen # Date 1582896490 -3600 # Node ID 1cc6673d1cb8bfb290325148b26139be1f56477d # Parent 8b04d03f832f8055b8655edede051f6b024c51c2 updated inotify-tools (3.14 -> 3.20.2.2) diff -r 8b04d03f832f -r 1cc6673d1cb8 inotify-tools/receipt --- a/inotify-tools/receipt Fri Feb 28 14:13:06 2020 +0100 +++ b/inotify-tools/receipt Fri Feb 28 14:28:10 2020 +0100 @@ -1,28 +1,35 @@ # SliTaz package receipt. PACKAGE="inotify-tools" -VERSION="3.14" +VERSION="3.20.2.2" CATEGORY="system-tools" SHORT_DESC="Set of programs providing a simple interface to inotify." MAINTAINER="pankso@slitaz.org" LICENSE="GPL" +WEB_SITE="https://github.com/rvoicilas/inotify-tools/wiki" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://github.com/rvoicilas/inotify-tools/wiki" -WGET_URL="https://github.com/downloads/rvoicilas/inotify-tools/$TARBALL" +WGET_URL="https://github.com/downloads/rvoicilas/$PACKAGE/$TARBALL" DEPENDS="" -BUILD_DEPENDS="wget file" +BUILD_DEPENDS="autoconf automake cmake file libtool" # Rules to configure and make the package. compile_rules() { - ./configure && make && make install + ./autogen.sh && + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make install } # 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 + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib }