wok annotate uclibc-cross-compiler-armv4tl/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 1a169aa4ab60
children c11594098e34
rev   line source
pascal@5987 1 # SliTaz package receipt.
pascal@5987 2
pascal@5987 3 PACKAGE="uclibc-cross-compiler-armv4tl"
pascal@5987 4 VERSION="prebuilt"
pascal@5987 5 CATEGORY="development"
pascal@5987 6 SHORT_DESC="Toolchain for uclibc/armv4tl."
pascal@5987 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14781 8 LICENSE="GPL2"
pascal@5987 9 SOURCE="cross-compiler-armv4tl"
pascal@5987 10 TARBALL="$SOURCE.tar.bz2"
pascal@20672 11 WEB_SITE="https://web.archive.org/web/20101022004153/http://impactlinux.com/aboriginal"
pascal@12237 12 WGET_URL="$WEB_SITE/downloads/binaries/cross-compiler/$TARBALL"
pascal@13033 13 TAGS="compiler C arm"
pascal@20296 14 COOKOPTS="!strip"
pascal@5987 15
pascal@12236 16 SUGGESTED="uclibc-${PACKAGE##*-}"
pascal@11825 17
pascal@5987 18 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@5987 19 genpkg_rules()
pascal@5987 20 {
pascal@5987 21 mkdir -p $fs/usr/share $fs/usr/bin
gokhlayeh@8686 22 cp -a $src $fs/usr/share/$PACKAGE
gokhlayeh@8686 23 for i in $(cd $src ; ls bin/${PACKAGE##*-}-*); do
pascal@5987 24 file=$(basename $i)
pascal@5987 25 ln -s ../share/$PACKAGE/bin/$file $fs/usr/bin/uclibc-$file
pascal@5987 26 done
pascal@5987 27 }