wok annotate uclibc-cross-compiler-mips64/receipt @ rev 10717

Up: slitaz-boot-scripts (4.4) - WARNING: no more hwconf.sh and i18n.sh so we sed in rcS.conf to change that or next boot boot get lots of problem
author Christophe Lincoln <pankso@slitaz.org>
date Sat May 28 23:23:13 2011 +0200 (2011-05-28)
parents 8da46cc14f57
children d357d6dbbfa8
rev   line source
pascal@5987 1 # SliTaz package receipt.
pascal@5987 2
pascal@5987 3 PACKAGE="uclibc-cross-compiler-mips64"
pascal@5987 4 VERSION="prebuilt"
pascal@5987 5 CATEGORY="development"
pascal@5987 6 SHORT_DESC="Toolchain for uclibc/mips64."
pascal@5987 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@5987 8 SOURCE="cross-compiler-mips64"
pascal@5987 9 TARBALL="$SOURCE.tar.bz2"
pascal@5987 10 WEB_SITE="http://impactlinux.com/aboriginal"
pascal@5987 11 WGET_URL="$WEB_SITE/downloads/binaries/$TARBALL"
pascal@5987 12
pascal@5987 13 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@5987 14 genpkg_rules()
pascal@5987 15 {
pascal@5987 16 mkdir -p $fs/usr/share $fs/usr/bin
gokhlayeh@8686 17 cp -a $src $fs/usr/share/$PACKAGE
gokhlayeh@8686 18 for i in $(cd $src ; ls bin/${PACKAGE##*-}-*); do
pascal@5987 19 file=$(basename $i)
pascal@5987 20 ln -s ../share/$PACKAGE/bin/$file $fs/usr/bin/uclibc-$file
pascal@5987 21 done
pascal@5987 22 }