wok rev 22949

updated inotify-tools (3.14 -> 3.20.2.2)
author Hans-G?nter Theisgen
date Fri Feb 28 14:28:10 2020 +0100 (2020-02-28)
parents 8b04d03f832f
children 2f366f0a51c5
files inotify-tools/receipt
line diff
     1.1 --- a/inotify-tools/receipt	Fri Feb 28 14:13:06 2020 +0100
     1.2 +++ b/inotify-tools/receipt	Fri Feb 28 14:28:10 2020 +0100
     1.3 @@ -1,28 +1,35 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="inotify-tools"
     1.7 -VERSION="3.14"
     1.8 +VERSION="3.20.2.2"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="Set of programs providing a simple interface to inotify."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="GPL"
    1.13 +WEB_SITE="https://github.com/rvoicilas/inotify-tools/wiki"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="https://github.com/rvoicilas/inotify-tools/wiki"
    1.17 -WGET_URL="https://github.com/downloads/rvoicilas/inotify-tools/$TARBALL"
    1.18 +WGET_URL="https://github.com/downloads/rvoicilas/$PACKAGE/$TARBALL"
    1.19  
    1.20  DEPENDS=""
    1.21 -BUILD_DEPENDS="wget file"
    1.22 +BUILD_DEPENDS="autoconf automake cmake file libtool"
    1.23  
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 -	./configure && make && make install
    1.28 +	./autogen.sh &&
    1.29 +	./configure		\
    1.30 +		--prefix=/usr	\
    1.31 +		$CONFIGURE_ARGS &&
    1.32 +	make &&
    1.33 +	make install
    1.34  }
    1.35  
    1.36  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.37  genpkg_rules()
    1.38  {
    1.39  	mkdir -p $fs/usr/lib
    1.40 -	cp -a $install/usr/bin $fs/usr
    1.41 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.42 +
    1.43 +	cp -a $install/usr/bin		$fs/usr
    1.44 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.45  }