wok view inotify-tools/receipt @ rev 24089

erlang: skip java files
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jul 12 09:17:44 2021 +0000 (2021-07-12)
parents 349cebfc7da3
children 7f162a2d0d51
line source
1 # SliTaz package receipt.
3 PACKAGE="inotify-tools"
4 VERSION="3.20.2.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Set of programs providing a simple interface to inotify."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://github.com/rvoicilas/inotify-tools/wiki"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/rvoicilas/$PACKAGE/archive/$VERSION.tar.gz"
14 DEPENDS=""
15 BUILD_DEPENDS="autoconf automake cmake file libtool"
17 current_version()
18 {
19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 ./autogen.sh &&
27 ./configure \
28 --prefix=/usr \
29 $CONFIGURE_ARGS &&
30 make &&
31 make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/lib
39 cp -a $install/usr/bin $fs/usr
40 cp -a $install/usr/lib/*.so* $fs/usr/lib
41 }