PCC: fix linker configuration
[harbours.git] / zlib / HARBOUR
blob76fc381db6b32ce7902a326b31f96e517fd097dd
2 # Copyright (c) 2013 Vojtech Horky
3 # All rights reserved.
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
7 # are met:
9 # - Redistributions of source code must retain the above copyright
10 #   notice, this list of conditions and the following disclaimer.
11 # - Redistributions in binary form must reproduce the above copyright
12 #   notice, this list of conditions and the following disclaimer in the
13 #   documentation and/or other materials provided with the distribution.
14 # - The name of the author may not be used to endorse or promote products
15 #   derived from this software without specific prior written permission.
17 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 shipname=zlib
30 shipversion=1.2.11
31 shipsources="http://zlib.net/${shipname}-${shipversion}.tar.gz"
32 shipfunnels=4
34 build() {
35         run tar xzf "${shipname}-${shipversion}.tar.gz"
36         # FIXME - need to create patch replacing all write() with write_all()
37         # because apparently zlib expects that write() has to write() everything
38         # (see gzwrite.c:84).
39         cd "${shipname}-${shipversion}"
40         run env \
41                 CHOST=$HSCT_TARGET \
42                 CC=$HSCT_CC \
43                 ./configure \
44                         --static
45         run make -j$shipfunnels STATIC_ONLY=y
48 package() {
49         cd "${shipname}-${shipversion}"
50         run make install DESTDIR=$PWD/PKG
51         
52         # Copy the headers and static library
53         run cp PKG/usr/local/include/zlib.h PKG/usr/local/include/zconf.h "$HSCT_INCLUDE_DIR/"
54         run cp PKG/usr/local/lib/libz.a "$HSCT_LIB_DIR/"
55         
56         run mkdir -p "$HSCT_MY_DIR/inc/c"
57         run cp PKG/usr/local/include/zlib.h PKG/usr/local/include/zconf.h "$HSCT_MY_DIR/inc/c"
58         
59         run mkdir -p "$HSCT_MY_DIR/lib"
60         run cp PKG/usr/local/lib/libz.a "$HSCT_MY_DIR/lib"
61         
62         # Copy the executables
63         run mkdir -p "$HSCT_MY_DIR/app/"
64         run cp minigzip "$HSCT_MY_DIR/app/"
65         if [ -x minigzip64 ]; then
66                 run cp minigzip64 "$HSCT_MY_DIR/app/"
67         fi