wok view inotify-tools/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents 165decb639cc
children 1cc6673d1cb8
line source
1 # SliTaz package receipt.
3 PACKAGE="inotify-tools"
4 VERSION="3.14"
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/rvoicilas/inotify-tools/wiki"
11 WGET_URL="https://github.com/downloads/rvoicilas/inotify-tools/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS="wget file"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/bin $fs/usr
27 cp -a $install/usr/lib/*.so* $fs/usr/lib
28 }