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

Up: cairo-dock-plugins to 2.4.0~2.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Oct 17 01:46:47 2011 +0000 (2011-10-17)
parents df5b8ff398d7
children 4d1b6826f4c6
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 gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 mkdir -p $fs/usr/share $fs/usr/bin
17 cp -a $src $fs/usr/share/$PACKAGE
18 for i in $(cd $src ; ls bin/${PACKAGE##*-}-*); do
19 file=$(basename $i)
20 ln -s ../share/$PACKAGE/bin/$file $fs/usr/bin/uclibc-$file
21 done
22 }
24 # Pre and post install commands for Tazpkg.
25 post_install()
26 {
27 chroot "$1/" /usr/bin/uclibc-${PACKAGE##*-}-ldconfig
28 }
30 pre_remove()
31 {
32 for i in /lib/ld-uClibc.so*; do
33 case "$(readlink $i)" in
34 *usr/share/$PACKAGE/lib/*) rm -f $i ;;
35 esac
36 done
37 }