# HG changeset patch # User Pascal Bellard # Date 1329550343 -3600 # Node ID 8eec3c4a2a202275491b219ca41edbcbe0ad1a50 # Parent 9336912f1ef1e02f60efc4c1a63af9591fc97886 Add uclibc-cross-compiler-x86_64, uclibc-x86_64 diff -r 9336912f1ef1 -r 8eec3c4a2a20 uclibc-cross-compiler-x86_64/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uclibc-cross-compiler-x86_64/receipt Sat Feb 18 08:32:23 2012 +0100 @@ -0,0 +1,22 @@ +# SliTaz package receipt. + +PACKAGE="uclibc-cross-compiler-x86_64" +VERSION="prebuilt" +CATEGORY="development" +SHORT_DESC="Toolchain for uclibc/x86_64." +MAINTAINER="pascal.bellard@slitaz.org" +SOURCE="cross-compiler-x86_64" +TARBALL="$SOURCE.tar.bz2" +WEB_SITE="http://impactlinux.com/aboriginal" +WGET_URL="$WEB_SITE/downloads/binaries/cross-compiler/$TARBALL" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share $fs/usr/bin + cp -a $src $fs/usr/share/$PACKAGE + for i in $(cd $src ; ls bin/${PACKAGE##*-}-*); do + file=$(basename $i) + ln -s ../share/$PACKAGE/bin/$file $fs/usr/bin/uclibc-$file + done +} diff -r 9336912f1ef1 -r 8eec3c4a2a20 uclibc-x86_64/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uclibc-x86_64/receipt Sat Feb 18 08:32:23 2012 +0100 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +TARGET="x86_64" +PACKAGE="uclibc-$TARGET" +VERSION="prebuilt" +CATEGORY="base-system" +SHORT_DESC="UcLibc libraries." +MAINTAINER="pascal.bellard@slitaz.org" +WEB_SITE="http://impactlinux.com/aboriginal" +WANTED="uclibc-cross-compiler-$TARGET" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/lib + cp -a $src/lib/*.so* $fs/lib +} + +TAZBB_NO_INSTALL="because this is not the right target !"