wok view uclibc-cross-compiler-powerpc/receipt @ rev 11979

add icon to stuff
author Samuel Trassare <samuel_trassare@yahoo.com>
date Fri Mar 02 14:26:00 2012 -0800 (2012-03-02)
parents df5b8ff398d7
children 697c4bb2336d
line source
1 # SliTaz package receipt.
3 PACKAGE="uclibc-cross-compiler-powerpc"
4 VERSION="prebuilt"
5 CATEGORY="development"
6 SHORT_DESC="Toolchain for uclibc/powerpc."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="cross-compiler-powerpc"
9 TARBALL="$SOURCE.tar.bz2"
10 WEB_SITE="http://impactlinux.com/aboriginal"
11 WGET_URL="$WEB_SITE/downloads/binaries/$TARBALL"
13 DEPENDS="uclibc-${PACKAGE##*-}"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 mkdir -p $fs/usr/share $fs/usr/bin
19 cp -a $src $fs/usr/share/$PACKAGE
20 for i in $(cd $src ; ls bin/${PACKAGE##*-}-*); do
21 file=$(basename $i)
22 ln -s ../share/$PACKAGE/bin/$file $fs/usr/bin/uclibc-$file
23 done
24 }