components/unzip/Makefile
changeset 188 64b262c9d53f
child 189 824c82e11871
equal deleted inserted replaced
187:80d8cb349fea 188:64b262c9d53f
       
     1 #
       
     2 # CDDL HEADER START
       
     3 #
       
     4 # The contents of this file are subject to the terms of the
       
     5 # Common Development and Distribution License (the "License").
       
     6 # You may not use this file except in compliance with the License.
       
     7 #
       
     8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
       
     9 # or http://www.opensolaris.org/os/licensing.
       
    10 # See the License for the specific language governing permissions
       
    11 # and limitations under the License.
       
    12 #
       
    13 # When distributing Covered Code, include this CDDL HEADER in each
       
    14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
       
    15 # If applicable, add the following below this CDDL HEADER, with the
       
    16 # fields enclosed by brackets "[]" replaced with your own identifying
       
    17 # information: Portions Copyright [yyyy] [name of copyright owner]
       
    18 #
       
    19 # CDDL HEADER END
       
    20 
       
    21 #
       
    22 # Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
       
    23 #
       
    24 
       
    25 include ../../make-rules/shared-macros.mk
       
    26 
       
    27 COMPONENT_NAME=		unzip
       
    28 COMPONENT_VERSION=	6.0
       
    29 COMPONENT_SRC=		$(COMPONENT_NAME)60
       
    30 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tgz
       
    31 COMPONENT_ARCHIVE_HASH=	sha1:abf7de8a4018a983590ed6f5cbd990d4740f8a22
       
    32 COMPONENT_ARCHIVE_URL=	ftp://ftp.info-zip.org/pub/infozip/src/$(COMPONENT_ARCHIVE)
       
    33 COMPONENT_PROJECT_URL=http://www.info-zip.org/UnZip.html
       
    34 
       
    35 include ../../make-rules/prep.mk
       
    36 include ../../make-rules/justmake.mk
       
    37 include ../../make-rules/ips.mk
       
    38 
       
    39 # remove the unwanted file.
       
    40 COMPONENT_PREP_ACTION = $(RM) $(SOURCE_DIR)/crc_i386.S
       
    41 
       
    42 TARGET_ENV +=   "LOCAL_UNZIP=-DUNICODE_SUPPORT"
       
    43 
       
    44 # The Makefile we want is under unix/Makefile
       
    45 COMPONENT_BUILD_ARGS += -f unix/Makefile
       
    46 COMPONENT_BUILD_TARGETS += generic
       
    47 COMPONENT_INSTALL_ARGS += -f unix/Makefile
       
    48 
       
    49 # This doesn't respect DESTDIR, so overload BINDIR and MANDIR when we install.
       
    50 COMPONENT_INSTALL_ARGS += BINDIR=$(PROTOUSRBINDIR)
       
    51 COMPONENT_INSTALL_ARGS += MANDIR=$(PROTOUSRSHAREMAN1DIR)
       
    52 
       
    53 # common targets
       
    54 
       
    55 build:		$(BUILD_32)
       
    56 
       
    57 install:	$(INSTALL_32)
       
    58 
       
    59 test:		$(NO_TESTS)
       
    60 
       
    61 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
    62 
       
    63 include ../../make-rules/depend.mk