wok annotate uclibc-cross-compiler-x86_64/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (2022-05-21)
parents 8dd8bab3f0ca
children
rev   line source
pascal@11673 1 # SliTaz package receipt.
pascal@11673 2
pascal@11673 3 PACKAGE="uclibc-cross-compiler-x86_64"
pascal@11673 4 VERSION="prebuilt"
pascal@11673 5 CATEGORY="development"
pascal@11673 6 SHORT_DESC="Toolchain for uclibc/x86_64."
pascal@11673 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14781 8 LICENSE="GPL2"
pascal@11673 9 SOURCE="cross-compiler-x86_64"
pascal@11673 10 TARBALL="$SOURCE.tar.bz2"
pascal@20672 11 WEB_SITE="https://web.archive.org/web/20101022004153/http://impactlinux.com/aboriginal"
pascal@11673 12 WGET_URL="$WEB_SITE/downloads/binaries/cross-compiler/$TARBALL"
pascal@13033 13 TAGS="compiler C"
pascal@20296 14 COOKOPTS="!strip"
pascal@11673 15
pascal@12236 16 SUGGESTED="uclibc-${PACKAGE##*-}"
pascal@11825 17
pascal@24564 18 # What is the latest version available today?
pascal@24564 19 current_version()
pascal@24564 20 {
pascal@24564 21 wget -O - https://github.com/landley/aboriginal/tags 2>/dev/null | \
pascal@24564 22 sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
pascal@24564 23 }
pascal@24564 24
pascal@11673 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11673 26 genpkg_rules()
pascal@11673 27 {
pascal@11673 28 mkdir -p $fs/usr/share $fs/usr/bin
pascal@11673 29 cp -a $src $fs/usr/share/$PACKAGE
pascal@11673 30 for i in $(cd $src ; ls bin/${PACKAGE##*-}-*); do
pascal@11673 31 file=$(basename $i)
pascal@11673 32 ln -s ../share/$PACKAGE/bin/$file $fs/usr/bin/uclibc-$file
pascal@11673 33 done
pascal@11673 34 }