wok annotate nbwmon/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.
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 | 3ba8d2c9720d |
children | 5ea0ce1cecc0 |
rev | line source |
---|---|
paul@17165 | 1 # SliTaz package receipt. |
paul@17165 | 2 |
paul@17165 | 3 PACKAGE="nbwmon" |
Hans-G?nter@21523 | 4 VERSION="0.5.2" |
paul@17165 | 5 CATEGORY="network" |
paul@17165 | 6 SHORT_DESC="Ncurses bandwidth monitor." |
paul@17165 | 7 MAINTAINER="paul@slitaz.org" |
paul@17165 | 8 LICENSE="MIT" |
Hans-G?nter@21523 | 9 WEB_SITE="https://github.com/causes-/nbwmon" |
Hans-G?nter@21523 | 10 |
Hans-G?nter@21523 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@21523 | 12 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" |
paul@17165 | 13 |
paul@17165 | 14 DEPENDS="ncurses" |
Hans-G?nter@21523 | 15 BUILD_DEPENDS="ncurses-dev" |
paul@17165 | 16 |
paul@17165 | 17 # Rules to configure and make the package. |
paul@17165 | 18 compile_rules() |
paul@17165 | 19 { |
pascal@17672 | 20 export LDFLAGS="$LDFLAGS -ltinfo" |
paul@17165 | 21 make |
paul@17165 | 22 } |
paul@17165 | 23 |
paul@17165 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@17165 | 25 genpkg_rules() |
paul@17165 | 26 { |
paul@17165 | 27 mkdir -p $fs/usr/bin |
paul@17165 | 28 cp -a $src/$PACKAGE $fs/usr/bin |
paul@17165 | 29 } |