wok view uclibc-cross-compiler-i486/receipt @ rev 5990

uclibc-cross-compiler-i486: add run time support for host
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 14 16:57:26 2010 +0200 (2010-08-14)
parents 8da46cc14f57
children 81728dc610ff
line source
1 # SliTaz package receipt.
3 PACKAGE="uclibc-cross-compiler-i486"
4 VERSION="prebuilt"
5 CATEGORY="development"
6 SHORT_DESC="Toolchain for uclibc/i486."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="cross-compiler-i486"
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 }
30 # Pre and post install commands for Tazpkg.
31 post_install()
32 {
33 for i in $(cd $1/ ; ls usr/share/$PACKAGE/lib/ld-uClibc.so*); do
34 [ -e $1/lib/$(basename $i) ] || ln -s /$i $1/lib
35 done
36 cat <<EOT
37 Add /usr/share/$PACKAGE/lib in your LD_LIBRARY_PATH to enable the shared libraries
38 EOT
39 }
41 pre_remove()
42 {
43 for i in /lib/ld-uClibc.so*; do
44 case "$(readlink $i)" in
45 *usr/share/$PACKAGE/lib/*) rm -f $i ;;
46 esac
47 done
48 }