wok-current annotate inotify-tools/receipt @ rev 24015
Up tazinst (112)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Feb 25 10:56:54 2021 +0000 (2021-02-25) |
parents | 2f366f0a51c5 |
children | 5ea0ce1cecc0 |
rev | line source |
---|---|
pankso@15851 | 1 # SliTaz package receipt. |
pankso@15851 | 2 |
pankso@15851 | 3 PACKAGE="inotify-tools" |
Hans-G?nter@22949 | 4 VERSION="3.20.2.2" |
pankso@15851 | 5 CATEGORY="system-tools" |
pankso@15851 | 6 SHORT_DESC="Set of programs providing a simple interface to inotify." |
pankso@15851 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@15851 | 8 LICENSE="GPL" |
Hans-G?nter@22949 | 9 WEB_SITE="https://github.com/rvoicilas/inotify-tools/wiki" |
Hans-G?nter@22949 | 10 |
pankso@15851 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@22951 | 12 WGET_URL="https://github.com/rvoicilas/$PACKAGE/archive/$VERSION.tar.gz" |
pankso@15851 | 13 |
pankso@15851 | 14 DEPENDS="" |
Hans-G?nter@22949 | 15 BUILD_DEPENDS="autoconf automake cmake file libtool" |
pankso@15851 | 16 |
pankso@15851 | 17 # Rules to configure and make the package. |
pankso@15851 | 18 compile_rules() |
pankso@15851 | 19 { |
Hans-G?nter@22949 | 20 ./autogen.sh && |
Hans-G?nter@22949 | 21 ./configure \ |
Hans-G?nter@22949 | 22 --prefix=/usr \ |
Hans-G?nter@22949 | 23 $CONFIGURE_ARGS && |
Hans-G?nter@22949 | 24 make && |
Hans-G?nter@22949 | 25 make install |
pankso@15851 | 26 } |
pankso@15851 | 27 |
pankso@15851 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@15851 | 29 genpkg_rules() |
pankso@15851 | 30 { |
pankso@15851 | 31 mkdir -p $fs/usr/lib |
Hans-G?nter@22949 | 32 |
Hans-G?nter@22949 | 33 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@22949 | 34 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@15851 | 35 } |