wok view sysstat/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 4c17b4535f65
children 3fe0ed7c1aac
line source
1 # SliTaz package receipt.
3 PACKAGE="sysstat"
4 VERSION="12.1.7"
5 CATEGORY="system-tools"
6 SHORT_DESC="Performance monitoring tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://sebastien.godard.pagesperso-orange.fr/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://pagesperso-orange.fr/sebastien.godard/$TARBALL"
14 DEPENDS="gcc63-lib-base"
15 BUILD_DEPENDS="gettext bzip2 gcc63"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 sed -i 's|(uname -m)|(echo i686)|' configure
21 export CC=gcc-63 CXX=g++-63
23 ./configure $CONFIGURE_ARGS &&
24 make &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
33 cp -a $install/etc $fs
34 cp -a $install/var $fs
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/lib $fs/usr
37 }