blob: 005c2a958b2e159a945196560d1e9ac5fd324e55 [file] [log] [blame]
Damjan Marion561f2732018-09-21 12:27:45 +02001# Copyright (c) 2018 Cisco and/or its affiliates.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at:
5#
6# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
14define h1
15 @echo "--- $(1)"
16endef
17
18define package
19$1_tarball_strip_dirs ?= 0
20$1_src_dir ?= $(B)/src-$1
21$1_patch_dir ?= $(CURDIR)/patches/$1_$($1_version)
22$1_build_dir ?= $(B)/build-$1
23$1_install_dir ?= $(I)
24$1_config_log ?= $(B)/$1.config.log
25$1_build_log ?= $(B)/$1.build.log
26$1_install_log ?= $(B)/$1.install.log
27
28##############################################################################
29# Download
30##############################################################################
31downloads/$($1_tarball):
32 mkdir -p downloads
33 @if [ -e $(DL_CACHE_DIR)/$($1_tarball) ] ; \
Benoît Gannefe750c22019-03-25 11:41:34 +010034 then cp $(DL_CACHE_DIR)/$($1_tarball) $$@ ; \
Damjan Marion561f2732018-09-21 12:27:45 +020035 else \
36 echo "Downloading $($1_url)" ; \
Benoît Gannefe750c22019-03-25 11:41:34 +010037 curl -o $$@ -LO $($1_url) ; \
Damjan Marion561f2732018-09-21 12:27:45 +020038 fi
Benoît Gannefe750c22019-03-25 11:41:34 +010039 @rm -f $(B)/.$1.download.ok
Damjan Marion561f2732018-09-21 12:27:45 +020040
41$(B)/.$1.download.ok: downloads/$($1_tarball)
42 @mkdir -p $(B)
43 $$(call h1,"validating $1 $($1_version) checksum")
44 @SUM=$$(shell openssl md5 $$< | cut -f 2 -d " " -) ; \
45 ([ "$$$${SUM}" = "$($1_tarball_md5sum)" ] || \
46 ( echo "==========================================================" && \
47 echo "Bad Checksum!" && \
48 echo "Expected: $($1_tarball_md5sum)" && \
49 echo "Calculated: $$$${SUM}" && \
50 echo "Please remove $$< and retry" && \
51 echo "==========================================================" && \
52 false ))
53 @touch $$@
54
55.PHONY: $1-download
56$1-download: $(B)/.$1.download.ok
57
58##############################################################################
59# Extract
60##############################################################################
61$(B)/.$1.extract.ok: $(B)/.$1.download.ok
62 $$(call h1,"extracting $1 $($1_version)")
63 @mkdir -p $$($1_src_dir)
64 @tar \
65 --directory $$($1_src_dir) \
66 --extract \
67 --strip-components=$$($1_tarball_strip_dirs) \
68 --file downloads/$($1_tarball)
69 @touch $$@
70
71.PHONY: $1-extract
72$1-extract: $(B)/.$1.extract.ok
73
74##############################################################################
75# Patch
76##############################################################################
Damjan Mariond93638e2019-03-29 21:22:09 +010077$(B)/.$1.patch.ok: $(B)/.$1.extract.ok
Damjan Marion561f2732018-09-21 12:27:45 +020078 $$(call h1,"patching $1 $($1_version)")
79ifneq ($$(wildcard $$($1_patch_dir)/*.patch),)
80 @for f in $$($1_patch_dir)/*.patch ; do \
81 echo "Applying patch: $$$$(basename $$$$f)" ; \
82 patch -p1 -d $$($1_src_dir) < $$$$f ; \
83 done
84endif
85 @touch $$@
86
87.PHONY: $1-patch
88$1-patch: $(B)/.$1.patch.ok
89
90##############################################################################
91# Config
92##############################################################################
93
94ifeq ($$(call $1_config_cmds),)
95define $1_config_cmds
96 @cd $$($1_build_dir) && \
97 CFLAGS="$$($1_cflags)" \
98 $$($1_src_dir)/configure \
99 --prefix=$$($1_install_dir) \
100 $$($1_configure_args) > $$($1_config_log)
101endef
102endif
103
104$(B)/.$1.config.ok: $(B)/.$1.patch.ok $(addsuffix -install,$($1_depends))
105 $$(call h1,"configuring $1 $($1_version) - log: $$($1_config_log)")
106 @mkdir -p $$($1_build_dir)
107 $$(call $1_config_cmds)
108 @touch $$@
109
110.PHONY: $1-config
111$1-config: $(B)/.$1.config.ok
112
113##############################################################################
114# Build
115##############################################################################
116
117ifeq ($$(call $1_build_cmds),)
118define $1_build_cmds
119 @$(MAKE) $(MAKE_ARGS) -C $$($1_build_dir) > $$($1_build_log)
120endef
121endif
122
123$(B)/.$1.build.ok: $(B)/.$1.config.ok
124 $$(call h1,"building $1 $($1_version) - log: $$($1_build_log)")
125 $$(call $1_build_cmds)
126 @touch $$@
127
128.PHONY: $1-build
129$1-build: $(B)/.$1.build.ok
130
131##############################################################################
132# Install
133##############################################################################
134
135ifeq ($$(call $1_install_cmds),)
136define $1_install_cmds
137 @$(MAKE) $(MAKE_ARGS) -C $$($1_build_dir) install > $$($1_install_log)
138endef
139endif
140
141$(B)/.$1.install.ok: $(B)/.$1.build.ok
142 $$(call h1,"installing $1 $($1_version) - log: $$($1_install_log)")
143 $$(call $1_install_cmds)
144 @touch $$@
145
146.PHONY: $1-install
147$1-install: $(B)/.$1.install.ok
148
149ALL_TARGETS += $1-install
150endef