wok view mingw32-runtime/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 8a74e7b0ff7f
children d3556b8f5c3d
line source
1 # SliTaz package receipt.
3 PACKAGE="mingw32-runtime"
4 SOURCE="mingwrt"
5 VERSION="3.15.2-mingw32"
6 CATEGORY="development"
7 SHORT_DESC="MinGW32 runtime."
8 MAINTAINER="rcx@zoominternet.net"
9 LICENSE="PublicDomain"
10 TARBALL="$SOURCE-$VERSION-src.tar.gz"
11 WEB_SITE="http://www.mingw.org/"
12 WGET_URL="$SF_MIRROR/mingw/$TARBALL"
13 MINGW32_ID="i586-pc-mingw32"
15 DEPENDS="mingw32-w32api"
16 BUILD_DEPENDS="slitaz-toolchain mingw32-binutils mingw32-runtime-headers mingw32-w32api-headers mingw32-gcc-c mingw32-w32api"
18 # Configuration only needs included if we're in the build/wok environment
19 if [ -e $WOK/mingw32-toolchain/stuff/mingw32.conf ] ; then
20 . $WOK/mingw32-toolchain/stuff/mingw32.conf
21 fi
23 # What is the latest version available today?
24 current_version()
25 {
26 wget -O - https://sourceforge.net/projects/mingw/files/MinGW/Base/mingwrt/ 2>/dev/null | \
27 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \
28 sed '/scope="row/!d;s|.*/mingwrt-||;s|-src.*||;q'
29 }
31 # Rules to configure and make the package.
32 compile_rules()
33 {
34 sed -i 's|/doc/|/share&|' configure */configure Makefile.in
35 if [ "$MINGW32_ID" != "$MINGW32_TARGET" ] ; then
36 echo "ERROR: Conf 'TARGET' string differs from Receipt 'ID' string"
37 return 1
38 fi
40 find $src -name 'Makefile*' | xargs sed -i "s|^inst_.*:= *|&$DESTDIR/|"
41 mkdir -p $DESTDIR/usr/bin
42 rm -f -r $src/binutils
43 mkdir -p $SOURCE-$VERSION-build
44 cd $SOURCE-$VERSION-build
46 $src/configure \
47 --prefix=/usr/$MINGW32_TARGET \
48 --host=$MINGW32_TARGET \
49 --build=$BUILD_HOST &&
50 make CFLAGS="-O2 -mms-bitfields -march=${TARGET_CPU-i386} -I$MINGW32_ROOT/include" LDFLAGS="-s" &&
51 make install
52 }
54 # Rules to gen a SliTaz package suitable for Tazpkg.
55 genpkg_rules()
56 {
57 mkdir -p $fs$MINGW32_ROOT
58 cp -a $install/usr/bin $fs$MINGW32_ROOT
59 cp -a $install/usr/lib $fs$MINGW32_ROOT
60 }
62 # Rules to setup after installation
63 post_install()
64 {
65 # Archives get stripped during packaging; need to run ranlib
66 chroot "$1/" find "/usr/$MINGW32_ID/lib/" -name *.a -exec $MINGW32_ID-ranlib {} \;
67 }
69 # Rules to clean the package
70 clean_wok()
71 {
72 rm -r $SOURCE-$VERSION-build
73 }