wok view uclibc-cross-compiler-armv4tl/receipt @ rev 8260

Changed lorcon compression to .tar.lzma.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Jan 29 16:20:39 2011 +0000 (2011-01-29)
parents
children df5b8ff398d7
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 SOURCE="cross-compiler-armv4tl"
9 TARBALL="$SOURCE.tar.bz2"
10 WEB_SITE="http://impactlinux.com/aboriginal"
11 WGET_URL="$WEB_SITE/downloads/binaries/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $SOURCE
17 }
19 # Rules to gen a SliTaz package suitable for Tazpkg.
20 genpkg_rules()
21 {
22 mkdir -p $fs/usr/share $fs/usr/bin
23 cp -a $SOURCE $fs/usr/share/$PACKAGE
24 for i in $(cd $SOURCE ; ls bin/${PACKAGE##*-}-*); do
25 file=$(basename $i)
26 ln -s ../share/$PACKAGE/bin/$file $fs/usr/bin/uclibc-$file
27 done
28 }