wok annotate mingw32-gcc-c/receipt @ rev 13176

librsvg: do not use removed gdk-pixbuf-query-loaders
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jul 30 12:02:51 2012 +0200 (2012-07-30)
parents 42924af752bc
children 380ffe05937a
rev   line source
pascal@12905 1 # SliTaz package receipt.
pascal@12905 2
pascal@12905 3 PACKAGE="mingw32-gcc-c"
pascal@12905 4 SOURCE="gcc-core"
pascal@12905 5 VERSION="3.4.5-20060117-2"
pascal@12905 6 CATEGORY="development"
pascal@12905 7 SHORT_DESC="MinGW32 gcc, for the C language only."
pascal@12905 8 MAINTAINER="rcx@zoominternet.net"
pascal@12905 9 DEPENDS="glibc-base mingw32-binutils mingw32-w32api-headers mingw32-runtime-headers"
pascal@12905 10 BUILD_DEPENDS="slitaz-toolchain bison flex mingw32-binutils mingw32-runtime-headers mingw32-w32api-headers"
pascal@12905 11 TARBALL="$SOURCE-$VERSION-src.tar.gz"
pascal@12905 12 WEB_SITE="http://www.mingw.org/"
pascal@12905 13 MINGW32_URL="$SF_MIRROR/mingw"
pascal@12905 14 WGET_URL="$MINGW32_URL/$TARBALL"
pascal@12905 15 MINGW32_ID="i586-pc-mingw32"
pascal@13033 16 TAGS="compiler C"
pascal@12905 17
pascal@12905 18 # Configuration only needs included if we're in the build/wok environment
pascal@12905 19 if [ -e $WOK/mingw32-toolchain/stuff/mingw32.conf ] ; then
pascal@12905 20 . $WOK/mingw32-toolchain/stuff/mingw32.conf
pascal@12905 21 fi
pascal@12905 22
pascal@12905 23 # Rules to configure and make the package.
pascal@12905 24 compile_rules()
pascal@12905 25 {
pascal@12905 26 if [ "$MINGW32_ID" != "$MINGW32_TARGET" ] ; then
pascal@12905 27 echo "ERROR: Conf 'TARGET' string differs from Receipt 'ID' string"
pascal@12905 28 return 1
pascal@12905 29 fi
pascal@12905 30
pascal@12905 31 rm -f -r $src/binutils
pascal@12905 32 mkdir -p $SOURCE-$VERSION-build
pascal@12905 33 cd $SOURCE-$VERSION-build
pascal@12905 34 $src/configure \
pascal@12905 35 --prefix=/usr \
pascal@12905 36 --libexecdir=/usr/lib \
pascal@12905 37 --infodir=/usr/share/info \
pascal@12905 38 --mandir=/usr/share/man \
pascal@12905 39 --with-sysroot=$MINGW32_ROOT \
pascal@12905 40 --disable-shared \
pascal@12905 41 --disable-debug \
pascal@12905 42 --target=$MINGW32_TARGET \
pascal@12905 43 --enable-languages=c \
pascal@12905 44 --enable-threads=win32 \
pascal@12905 45 --disable-win32-registry \
pascal@12905 46 --enable-sjlj-exceptions \
pascal@12905 47 $CONFIGURE_ARGS &&
pascal@12905 48 make CFLAGS="-O2 -fomit-frame-pointer" LDFLAGS="-s" &&
pascal@12905 49 make DESTDIR=$src/_pkg install
pascal@12905 50 }
pascal@12905 51
pascal@12905 52 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@12905 53 genpkg_rules()
pascal@12905 54 {
pascal@12905 55 mkdir -p $fs/usr
pascal@12905 56 cp -a $_pkg/usr/bin $fs/usr
pascal@12905 57 # do not need to copy lib/libiberty.a
pascal@12905 58 mkdir -p $fs/usr/lib
pascal@12905 59 cp -a $_pkg/usr/lib/gcc $fs/usr/lib
pascal@12905 60 }
pascal@12905 61
pascal@12905 62 # Rules to setup after installation
pascal@12905 63 post_install()
pascal@12905 64 {
pascal@12905 65 # Archives get stripped during packaging; need to run ranlib
pascal@12905 66 local root
pascal@12905 67 root=$1
pascal@12905 68 find $root/usr/lib/gcc/$MINGW32_ID/ -name *.a -exec $MINGW32_ID-ranlib {} \;
pascal@12905 69 }
pascal@12905 70
pascal@12905 71 # Rules to clean the package
pascal@12905 72 clean_wok()
pascal@12905 73 {
pascal@12905 74 rm -r $SOURCE-$VERSION-build
pascal@12905 75 }