wok view uclibc-cross-compiler-sparc/receipt @ rev 21490

trickle: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 01 18:05:32 2019 +0200 (2019-05-01)
parents 1a169aa4ab60
children c11594098e34
line source
1 # SliTaz package receipt.
3 PACKAGE="uclibc-cross-compiler-sparc"
4 VERSION="prebuilt"
5 CATEGORY="development"
6 SHORT_DESC="Toolchain for uclibc/sparc."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="cross-compiler-sparc"
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 }