wok view mingw32-runtime-headers/receipt @ rev 16374

Up: slitaz-configs (5.4) Getting ready for 5.0-RC1
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 14 19:59:46 2014 +0200 (2014-04-14)
parents 42924af752bc
children afae00265386
line source
1 # SliTaz package receipt.
3 PACKAGE="mingw32-runtime-headers"
4 SOURCE="mingwrt"
5 VERSION="3.15.2-mingw32"
6 CATEGORY="development"
7 SHORT_DESC="MinGW32 runtime headers."
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"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 # Configuration only needs included if we're in the build/wok environment
18 if [ -e $WOK/mingw32-toolchain/stuff/mingw32.conf ] ; then
19 . $WOK/mingw32-toolchain/stuff/mingw32.conf
20 fi
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 cd $src
27 mkdir -p $DESTDIR$MINGW32_ROOT
28 cp -a include $DESTDIR$MINGW32_ROOT
29 cp -a profile/*.h $DESTDIR$MINGW32_ROOT/include
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs
36 cp -a $install/* $fs
37 }