wok diff cross-arm-binutils/receipt @ rev 10375

rox-filer: fix bdeps...
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 23 12:30:01 2011 +0200 (2011-05-23)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/cross-arm-binutils/receipt	Mon May 23 12:30:01 2011 +0200
     1.3 @@ -0,0 +1,46 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="cross-arm-binutils"
     1.7 +VERSION="2.21"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="Cross compilation linker targeting ARM platform."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +SOURCE="binutils"
    1.12 +WEB_SITE="http://www.gnu.org/software/binutils/"
    1.13 +TARBALL="$SOURCE-$VERSION.tar.bz2"
    1.14 +WGET_URL="$GNU_MIRROR/$SOURCE/$TARBALL"
    1.15 +
    1.16 +DEPENDS=""
    1.17 +BUILD_DEPENDS="slitaz-toolchain"
    1.18 +
    1.19 +# The goal here is to build an ARM cross toolchain who we let build code for
    1.20 +# the target arch from an i486 build/host. To build a cross toolchain we use
    1.21 +# the native i486 GCC compiler so set --build and --host to HOST_SYSTEM.
    1.22 +CROSS_TARGET="arm-slitaz-linux"
    1.23 +CROSS_TRIPLET="--build=$HOST_SYSTEM --host=$HOST_SYSTEM --target=$CROSS_TARGET"
    1.24 +
    1.25 +# CFLAGS and CXXFLAGS must not be set during the building of cross-tools.
    1.26 +unset CFLAGS CXXFLAGS
    1.27 +
    1.28 +# Rules to configure and make the package.
    1.29 +compile_rules()
    1.30 +{
    1.31 +	cd $src
    1.32 +	mkdir -p ../build && cd ../build
    1.33 +	$src/configure \
    1.34 +		--program-prefix="$CROSS_TARGET-" \
    1.35 +		--disable-multilib \
    1.36 +		--disable-nls \
    1.37 +		$CROSS_TRIPLET &&
    1.38 +	make configure-host &&
    1.39 +	make tooldir=/usr &&
    1.40 +	make tooldir=/usr install
    1.41 +}
    1.42 +
    1.43 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.44 +genpkg_rules()
    1.45 +{
    1.46 +	mkdir -p $fs/usr/bin $fs/usr/lib
    1.47 +	cp -a $install/usr/bin/$CROSS_TARGET-* $fs/usr/bin
    1.48 +	cp -a $install/usr/lib/ldscripts $fs/usr/lib
    1.49 +}