GCC SPECS file workaround
[harbours.git] / libpng / HARBOUR
blob6a15aa6d6ccb1aa6b91954d39440ff3338f19f34
2 # Copyright (c) 2014 Esteban Campostrini
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=libpng
30 shipversion=1.6.12
31 shipsources=" http://prdownloads.sourceforge.net/${shipname}/${shipname}-${shipversion}.tar.gz"
32 shiptugs="fdlibm zlib"
33 shipfunnels=4
36 build() {
37         run tar xzf "${shipname}-${shipversion}.tar.gz"
39         cd "${shipname}-${shipversion}"
40         cp "$HSCT_CONFIG_SUB" .
41         run ./configure \
42                 --disable-shared\
43                 $HSCT_CONFIGURE_ARGS
45         run make all-am 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/libpng16/pngconf.h PKG/usr/local/include/libpng16/png.h PKG/usr/local/include/libpng16/pnglibconf.h "$HSCT_INCLUDE_DIR/"
54         run cp PKG/usr/local/lib/libpng16.a "$HSCT_LIB_DIR/"
55         run cp $HSCT_LIB_DIR/libpng16.a $HSCT_LIB_DIR/libpng.a
56         
57         run mkdir -p "$HSCT_MY_DIR/inc/c"
58         run cp PKG/usr/local/include/libpng16/pngconf.h PKG/usr/local/include/libpng16/png.h PKG/usr/local/include/libpng16/pnglibconf.h "$HSCT_MY_DIR/inc/c"
59         
60         run mkdir -p "$HSCT_MY_DIR/lib"
61         run cp PKG/usr/local/lib/libpng16.a "$HSCT_MY_DIR/lib"
62         run cp $HSCT_LIB_DIR/libpng16.a $HSCT_MY_DIR/lib/libpng.a
63         
64         # Copy the executables
65         run mkdir -p "$HSCT_MY_DIR/app/"
66         run cp pngfix png-fix-itxt pngtest "$HSCT_MY_DIR/app/"
68         # Copy files needed for testing
69         run cp pngtest.png "$HSCT_MY_DIR/"