wok annotate gcc3/receipt @ rev 23837

Up freetype (2.10.2), git (2.26.2), glpi (9.4.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 01 10:44:24 2020 +0000 (2020-06-01)
parents 4cd6aef57b3a
children 52649f27a0da
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"
erkan@19462 6 SHORT_DESC="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@20603 25 --host=i686-pc-linux-gnu --build=i686-pc-linux-gnu \
pascal@20603 26 --target=i686-pc-linux-gnu \
pascal@13879 27 --infodir=/usr/share/info --mandir=/usr/share/man --enable-nls \
pascal@13879 28 --enable-languages=c,c++ --enable-shared --with-system-zlib \
pascal@13879 29 --enable-clocale=gnu --enable-objc-gc --enable-__cxa_atexit \
pascal@13879 30 --enable-threads=posix --with-tune=$ARCH \
pascal@13879 31 --program-suffix=-3
pascal@20573 32 make -j 1 $MAKEFLAGS bootstrap &&
pascal@20573 33 make -j 1 $MAKEFLAGS install
pascal@15323 34 } 2>&1 | sed 's/: No such file/: no such file/'
pascal@439 35 }
pascal@439 36
pascal@439 37 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@439 38 genpkg_rules()
pascal@439 39 {
pascal@13879 40 mkdir -p $fs/usr
pascal@13879 41 cp -a $install/usr/bin $install/usr/lib $install/usr/include $fs/usr
pascal@13879 42 rm $fs/usr/lib/lib*
pascal@439 43 }