wok-4.x annotate uclibc-cross-compiler-mips/receipt @ rev 7324
mirror-tools: add /etc/lighttpd/vhosts.conf
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Nov 18 10:21:49 2010 +0100 (2010-11-18) |
parents | |
children | df5b8ff398d7 |
rev | line source |
---|---|
pascal@5987 | 1 # SliTaz package receipt. |
pascal@5987 | 2 |
pascal@5987 | 3 PACKAGE="uclibc-cross-compiler-mips" |
pascal@5987 | 4 VERSION="prebuilt" |
pascal@5987 | 5 CATEGORY="development" |
pascal@5987 | 6 SHORT_DESC="Toolchain for uclibc/mips." |
pascal@5987 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@5987 | 8 SOURCE="cross-compiler-mips" |
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 configure and make the package. |
pascal@5987 | 14 compile_rules() |
pascal@5987 | 15 { |
pascal@5987 | 16 cd $SOURCE |
pascal@5987 | 17 } |
pascal@5987 | 18 |
pascal@5987 | 19 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@5987 | 20 genpkg_rules() |
pascal@5987 | 21 { |
pascal@5987 | 22 mkdir -p $fs/usr/share $fs/usr/bin |
pascal@5987 | 23 cp -a $SOURCE $fs/usr/share/$PACKAGE |
pascal@5987 | 24 for i in $(cd $SOURCE ; ls bin/${PACKAGE##*-}-*); do |
pascal@5987 | 25 file=$(basename $i) |
pascal@5987 | 26 ln -s ../share/$PACKAGE/bin/$file $fs/usr/bin/uclibc-$file |
pascal@5987 | 27 done |
pascal@5987 | 28 } |