# HG changeset patch # User Christophe Lincoln # Date 1390856549 -3600 # Node ID 0afd1658238415df26bf9de02c4aac34c456c64a # Parent c97276781626cb29155144b03368901c8a137aac Add inotify-tools (easy folder monitoring) diff -r c97276781626 -r 0afd16582384 inotify-tools/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/inotify-tools/receipt Mon Jan 27 22:02:29 2014 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="inotify-tools" +VERSION="3.14" +CATEGORY="system-tools" +SHORT_DESC="Set of programs providing a simple interface to inotify." +MAINTAINER="pankso@slitaz.org" +LICENSE="GPL" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="https://github.com/rvoicilas/inotify-tools/wiki" +WGET_URL="http://github.com/downloads/rvoicilas/inotify-tools/$TARBALL" + +DEPENDS="" +BUILD_DEPENDS="" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure && 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 +}