wok view fslint/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
children ad8b9ff412d2
line source
1 # SliTaz package receipt.
3 PACKAGE="fslint"
4 VERSION="2.46"
5 CATEGORY="base-system"
6 SHORT_DESC="File System 'lint' discovery and cleaning utility"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.pixelbeat.org/fslint/"
11 WGET_URL="$WEB_SITE/$TARBALL"
13 DEPENDS="gtk+ python libglade pygtk findutils cpio"
14 BUILD_DEPENDS="gettext"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make -C po DESTDIR=$DESTDIR LOCALEDIR=/usr/share/locale install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/share/pixmaps $fs/usr/share/applications
26 mkdir -p $fs/usr/bin $fs/usr/share/fslint
27 mkdir -p $install/usr/share/pixmaps
28 cp -a $src/doc $src/man $install/usr/share/
29 cp -a $src/fslint.desktop $fs/usr/share/applications
30 cp -a $src/fslint-gui $fs/usr/bin
31 cp -a $src/fslint.glade $fs/usr/bin
32 cp -a $src/fslint/fstool $fs/usr/share/fslint/
33 cp -a $src/fslint/supprt $fs/usr/share/fslint/
34 cp -a $src/fslint/find* $fs/usr/share/fslint/
35 cp -a $src/fslint/fslint $fs/usr/share/fslint/
36 cp -a $src/fslint/zipdir $fs/usr/share/fslint/
37 cp -a $src/fslint_icon.png $fs/usr/share/fslint/
38 ln -s ../fslint/fslint_icon.png $fs/usr/share/pixmaps
39 }