wok view uclibc-cross-compiler-armv4tl/receipt @ rev 22023
Remove cat process
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Sun Oct 20 12:39:13 2019 +0200 (2019-10-20) | 
| parents | 1a169aa4ab60 | 
| children | c11594098e34 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="uclibc-cross-compiler-armv4tl"
     4 VERSION="prebuilt"
     5 CATEGORY="development"
     6 SHORT_DESC="Toolchain for uclibc/armv4tl."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="GPL2"
     9 SOURCE="cross-compiler-armv4tl"
    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 arm"
    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 }