wok diff mingw32-w32api/receipt @ rev 13438
Up: claws-mail-notification (0.30)
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sun Oct 07 01:20:11 2012 +0200 (2012-10-07) |
parents | |
children | bb009a6ef036 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mingw32-w32api/receipt Sun Oct 07 01:20:11 2012 +0200 1.3 @@ -0,0 +1,64 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="mingw32-w32api" 1.7 +SOURCE="w32api" 1.8 +VERSION="3.13-mingw32" 1.9 +CATEGORY="development" 1.10 +SHORT_DESC="MinGW32 w32api." 1.11 +MAINTAINER="rcx@zoominternet.net" 1.12 +DEPENDS="" 1.13 +BUILD_DEPENDS="slitaz-toolchain mingw32-binutils mingw32-runtime-headers mingw32-w32api-headers mingw32-gcc-c" 1.14 +TARBALL="$SOURCE-$VERSION-src.tar.gz" 1.15 +WEB_SITE="http://www.mingw.org/" 1.16 +WGET_URL="$SF_MIRROR/mingw/$TARBALL" 1.17 +MINGW32_ID="i586-pc-mingw32" 1.18 + 1.19 +# Configuration only needs included if we're in the build/wok environment 1.20 +if [ -e $WOK/mingw32-toolchain/stuff/mingw32.conf ] ; then 1.21 + . $WOK/mingw32-toolchain/stuff/mingw32.conf 1.22 +fi 1.23 + 1.24 +# Rules to configure and make the package. 1.25 +compile_rules() 1.26 +{ 1.27 + if [ "$MINGW32_ID" != "$MINGW32_TARGET" ] ; then 1.28 + echo "ERROR: Conf 'TARGET' string differs from Receipt 'ID' string" 1.29 + return 1 1.30 + fi 1.31 + 1.32 + find $src -name 'Makefile*' | xargs sed -i "s|^inst_.*:= *|&$DESTDIR/|" 1.33 + rm -f -r $src/binutils 1.34 + mkdir -p $SOURCE-$VERSION-build $DESTDIR/usr/lib 1.35 + cd $SOURCE-$VERSION-build 1.36 + 1.37 + # NOTE: DESTDIR not handled correctly; have to fudge --prefix 1.38 + $src/configure \ 1.39 + --prefix=/usr/$MINGW32_TARGET \ 1.40 + --host=$MINGW32_TARGET \ 1.41 + --build=$BUILD_HOST && 1.42 + make CFLAGS="-O2 -mms-bitfields -march=${TARGET_CPU-i386}" LDFLAGS="-s" && 1.43 + make install 1.44 +} 1.45 + 1.46 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.47 +genpkg_rules() 1.48 +{ 1.49 + mkdir -p $fs$MINGW32_ROOT 1.50 + cp -a $_pkg/usr/lib $fs$MINGW32_ROOT 1.51 + chown -R root.root $fs 1.52 +} 1.53 + 1.54 +# Rules to setup after installation 1.55 +post_install() 1.56 +{ 1.57 + # Archives get stripped during packaging; need to run ranlib 1.58 + local root 1.59 + root=$1 1.60 + find $root/usr/$MINGW32_ID/lib/ -name *.a -exec $MINGW32_ID-ranlib {} \; 1.61 +} 1.62 + 1.63 +# Rules to clean the package 1.64 +clean_wok() 1.65 +{ 1.66 + rm -r $SOURCE-$VERSION-build 1.67 +}