wok view uclibc-cross-compiler-x86_64/receipt @ rev 20672

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 14:51:04 2019 +0100 (2019-01-24)
parents 1a169aa4ab60
children c11594098e34
line source
1 # SliTaz package receipt.
3 PACKAGE="uclibc-cross-compiler-x86_64"
4 VERSION="prebuilt"
5 CATEGORY="development"
6 SHORT_DESC="Toolchain for uclibc/x86_64."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="cross-compiler-x86_64"
10 TARBALL="$SOURCE.tar.bz2"
11 WEB_SITE="https://web.archive.org/web/20101022004153/http://impactlinux.com/aboriginal"
12 WGET_URL="$WEB_SITE/downloads/binaries/cross-compiler/$TARBALL"
13 TAGS="compiler C"
14 COOKOPTS="!strip"
16 SUGGESTED="uclibc-${PACKAGE##*-}"
18 # Rules to gen a SliTaz package suitable for Tazpkg.
19 genpkg_rules()
20 {
21 mkdir -p $fs/usr/share $fs/usr/bin
22 cp -a $src $fs/usr/share/$PACKAGE
23 for i in $(cd $src ; ls bin/${PACKAGE##*-}-*); do
24 file=$(basename $i)
25 ln -s ../share/$PACKAGE/bin/$file $fs/usr/bin/uclibc-$file
26 done
27 }