wok annotate gcc3/receipt @ rev 15953

arm: fix file cross compilation and add testsuite
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 23 15:49:23 2014 +0100 (2014-02-23)
parents 380ffe05937a
children 95758c7d1a56
rev   line source
pascal@439 1 # SliTaz package receipt.
pascal@439 2
pascal@439 3 PACKAGE="gcc3"
pascal@439 4 VERSION="3.4.6"
pascal@439 5 CATEGORY="development"
pascal@439 6 SHORT_DESC="The the GNU Compiler Collection."
pascal@439 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
slaxemulator@9127 9 SOURCE="gcc"
slaxemulator@9127 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@439 11 WEB_SITE="http://gcc.gnu.org/"
slaxemulator@9127 12 WGET_URL="$GNU_MIRROR/$SOURCE/$SOURCE-$VERSION/$TARBALL"
pascal@13033 13 TAGS="compiler C C++"
pascal@13033 14
pascal@13033 15 BUILD_DEPENDS="gawk"
pascal@13033 16 DEPENDS="gcc"
pascal@439 17
pascal@439 18 # Rules to configure and make the package.
pascal@439 19 compile_rules()
pascal@439 20 {
pascal@13879 21 mkdir gcc-build
pascal@13879 22 cd gcc-build
pascal@15323 23 {
pascal@13879 24 $src/configure --prefix=/usr --libexecdir=/usr/lib \
pascal@13879 25 --infodir=/usr/share/info --mandir=/usr/share/man --enable-nls \
pascal@13879 26 --enable-languages=c,c++ --enable-shared --with-system-zlib \
pascal@13879 27 --enable-clocale=gnu --enable-objc-gc --enable-__cxa_atexit \
pascal@13879 28 --enable-threads=posix --with-tune=$ARCH \
pascal@13879 29 --program-suffix=-3
pascal@13879 30 make $MAKEFLAGS bootstrap &&
pascal@13879 31 make $MAKEFLAGS install
pascal@15323 32 } 2>&1 | sed 's/: No such file/: no such file/'
pascal@439 33 }
pascal@439 34
pascal@439 35 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@439 36 genpkg_rules()
pascal@439 37 {
pascal@13879 38 mkdir -p $fs/usr
pascal@13879 39 cp -a $install/usr/bin $install/usr/lib $install/usr/include $fs/usr
pascal@13879 40 rm $fs/usr/lib/lib*
pascal@439 41 }