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

Up libusb (1.0.18), libusb-compat (0.1.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 14 10:35:34 2014 +0000 (2014-04-14)
parents 036b997ec7e1
children 9e01bc6321ea
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@15000 9 LICENSE="GPL2"
pascal@12905 10 TARBALL="$SOURCE-$VERSION-src.tar.gz"
pascal@12905 11 WEB_SITE="http://www.mingw.org/"
pascal@12905 12 MINGW32_URL="$SF_MIRROR/mingw"
pascal@12905 13 WGET_URL="$MINGW32_URL/$TARBALL"
pascal@12905 14 MINGW32_ID="i586-pc-mingw32"
pascal@13033 15 TAGS="compiler C"
pascal@12905 16
pascal@15000 17 DEPENDS="glibc-base mingw32-binutils mingw32-w32api-headers mingw32-runtime-headers"
pascal@15000 18 BUILD_DEPENDS="slitaz-toolchain bison flex mingw32-binutils mingw32-runtime-headers mingw32-w32api-headers"
pascal@15000 19
pascal@12905 20 # Configuration only needs included if we're in the build/wok environment
pascal@12905 21 if [ -e $WOK/mingw32-toolchain/stuff/mingw32.conf ] ; then
pascal@12905 22 . $WOK/mingw32-toolchain/stuff/mingw32.conf
pascal@12905 23 fi
pascal@12905 24
pascal@12905 25 # Rules to configure and make the package.
pascal@12905 26 compile_rules()
pascal@12905 27 {
pascal@15171 28 mkdir -p $DESTDIR/usr/share/man/man1 $DESTDIR/usr/share/man/man7
pascal@12905 29 if [ "$MINGW32_ID" != "$MINGW32_TARGET" ] ; then
pascal@12905 30 echo "ERROR: Conf 'TARGET' string differs from Receipt 'ID' string"
pascal@12905 31 return 1
pascal@12905 32 fi
pascal@12905 33
pascal@12905 34 rm -f -r $src/binutils
pascal@12905 35 mkdir -p $SOURCE-$VERSION-build
pascal@12905 36 cd $SOURCE-$VERSION-build
pascal@12905 37 $src/configure \
pascal@12905 38 --prefix=/usr \
pascal@12905 39 --libexecdir=/usr/lib \
pascal@12905 40 --infodir=/usr/share/info \
pascal@12905 41 --mandir=/usr/share/man \
pascal@12905 42 --with-sysroot=$MINGW32_ROOT \
pascal@12905 43 --disable-shared \
pascal@12905 44 --disable-debug \
pascal@12905 45 --target=$MINGW32_TARGET \
pascal@12905 46 --enable-languages=c \
pascal@12905 47 --enable-threads=win32 \
pascal@12905 48 --disable-win32-registry \
pascal@12905 49 --enable-sjlj-exceptions \
pascal@12905 50 $CONFIGURE_ARGS &&
pascal@12905 51 make CFLAGS="-O2 -fomit-frame-pointer" LDFLAGS="-s" &&
pascal@15274 52 make DESTDIR=$DESTDIR install 2>&1 | grep -v fixinc/fixincl
pascal@12905 53 }
pascal@12905 54
pascal@12905 55 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@12905 56 genpkg_rules()
pascal@12905 57 {
pascal@12905 58 mkdir -p $fs/usr
pascal@15000 59 cp -a $install/usr/bin $fs/usr
pascal@12905 60 # do not need to copy lib/libiberty.a
pascal@12905 61 mkdir -p $fs/usr/lib
pascal@15000 62 cp -a $install/usr/lib/gcc $fs/usr/lib
pascal@12905 63 }
pascal@12905 64
pascal@12905 65 # Rules to setup after installation
pascal@12905 66 post_install()
pascal@12905 67 {
pascal@12905 68 # Archives get stripped during packaging; need to run ranlib
pascal@12905 69 local root
pascal@12905 70 root=$1
pascal@12905 71 find $root/usr/lib/gcc/$MINGW32_ID/ -name *.a -exec $MINGW32_ID-ranlib {} \;
pascal@12905 72 }
pascal@12905 73
pascal@12905 74 # Rules to clean the package
pascal@12905 75 clean_wok()
pascal@12905 76 {
pascal@12905 77 rm -r $SOURCE-$VERSION-build
pascal@12905 78 }