1 | # $Id: ZIP.kmk 1505 2008-04-09 00:13:14Z bird $
|
---|
2 | ## @file
|
---|
3 | #
|
---|
4 | # kBuild Tool Config - The zip/unzip packer/unpacker.
|
---|
5 | #
|
---|
6 | # Copyright (c) 2006-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net>
|
---|
7 | #
|
---|
8 | #
|
---|
9 | # This file is part of kBuild.
|
---|
10 | #
|
---|
11 | # kBuild is free software; you can redistribute it and/or modify
|
---|
12 | # it under the terms of the GNU General Public License as published by
|
---|
13 | # the Free Software Foundation; either version 2 of the License, or
|
---|
14 | # (at your option) any later version.
|
---|
15 | #
|
---|
16 | # kBuild is distributed in the hope that it will be useful,
|
---|
17 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
19 | # GNU General Public License for more details.
|
---|
20 | #
|
---|
21 | # You should have received a copy of the GNU General Public License
|
---|
22 | # along with kBuild; if not, write to the Free Software
|
---|
23 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
24 | #
|
---|
25 | #
|
---|
26 |
|
---|
27 | TOOL_ZIP := The zip/unzip packer/unpacker.
|
---|
28 |
|
---|
29 | # Tool Specific Properties
|
---|
30 | ifndef TOOL_ZIP_UNPACK
|
---|
31 | TOOL_ZIP_UNPACK := $(wildcard $(PATH_DEVTOOLS_BLD)/unzip/v*/unzip$(HOSTSUFF_EXE))
|
---|
32 | ifeq ($(TOOL_ZIP_UNPACK),)
|
---|
33 | TOOL_ZIP_UNPACK := $(wildcard $(PATH_DEVTOOLS_BLD)/zip/v*/unzip$(HOSTSUFF_EXE))
|
---|
34 | endif
|
---|
35 | ifeq ($(TOOL_ZIP_UNPACK),)
|
---|
36 | TOOL_ZIP_UNPACK := $(wildcard $(PATH_DEVTOOLS_BLD)/bin/unzip$(HOSTSUFF_EXE))
|
---|
37 | endif
|
---|
38 | ifneq ($(TOOL_ZIP_UNPACK),)
|
---|
39 | TOOL_ZIP_UNPACK := $(lastword $(sort $(TOOL_ZIP_UNPACK)))
|
---|
40 | else
|
---|
41 | TOOL_ZIP_UNPACK := unzip$(HOSTSUFF_EXE)
|
---|
42 | endif
|
---|
43 | else
|
---|
44 | TOOL_ZIP_UNPACK := $(TOOL_ZIP_UNPACK)
|
---|
45 | endif
|
---|
46 | #ifndef TOOL_ZIP_PACK
|
---|
47 | # TOOL_ZIP_PACK := $(wildcard $(PATH_DEVTOOLS_BLD)/zip/v*/zip$(HOSTSUFF_EXE))
|
---|
48 | # ifeq ($(TOOL_ZIP_PACK),)
|
---|
49 | # TOOL_ZIP_PACK := $(wildcard $(PATH_DEVTOOLS_BLD)/unzip/v*/zip$(HOSTSUFF_EXE))
|
---|
50 | # endif
|
---|
51 | # ifeq ($(TOOL_ZIP_PACK),)
|
---|
52 | # TOOL_ZIP_PACK := $(wildcard $(PATH_DEVTOOLS_BLD)/bin/zip$(HOSTSUFF_EXE))
|
---|
53 | # endif
|
---|
54 | # ifneq ($(TOOL_ZIP_PACK),)
|
---|
55 | # TOOL_ZIP_PACK := $(lastword $(sort $(TOOL_ZIP_PACK)))
|
---|
56 | # else
|
---|
57 | # TOOL_ZIP_PACK := zip$(HOSTSUFF_EXE)
|
---|
58 | # endif
|
---|
59 | #else
|
---|
60 | # TOOL_ZIP_PACK := $(TOOL_ZIP_PACK)
|
---|
61 | #endif
|
---|
62 |
|
---|
63 | # General Properties used by kBuild
|
---|
64 | TOOL_ZIP_UNPACKFLAGS ?=
|
---|
65 |
|
---|
66 | ## UNPACK one file.
|
---|
67 | # @param $(zipget) Normalized main zipget name.
|
---|
68 | # @param $(archive) The file to unpack.
|
---|
69 | # @param $(flags) Flags.
|
---|
70 | # @param $(inst) Where to unpack it.
|
---|
71 | # @param $(out) Where to write the file list.
|
---|
72 | TOOL_ZIP_UNPACK_OUTPUT =
|
---|
73 | TOOL_ZIP_UNPACK_DEPEND =
|
---|
74 | TOOL_ZIP_UNPACK_DEPORD =
|
---|
75 | define TOOL_ZIP_UNPACK_CMDS
|
---|
76 | $(QUIET)$(TOOL_ZIP_UNPACK) $(flags) $(archive) -d "$(inst)"
|
---|
77 | $(QUIET)$(TOOL_ZIP_UNPACK) -l $(archive) | $(SED) \
|
---|
78 | -e '/ [0-2][0-9]:[0-6][0-9]/!d' \
|
---|
79 | -e 's/^.* [0-2][0-9]:[0-6][0-9] //' \
|
---|
80 | > $(out)
|
---|
81 | endef
|
---|
82 |
|
---|