crypto-ipsecmb: bump intel-ipsec-mb version to 1.5
[vpp.git] / build / external / packages / ipsec-mb.mk
1 # 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
14 ipsec-mb_version             := 1.5
15 ipsec-mb_tarball             := v$(ipsec-mb_version).tar.gz
16 ipsec-mb_tarball_md5sum_1.0  := 906e701937751e761671dc83a41cff65
17 ipsec-mb_tarball_md5sum_1.1  := 3916471d3713d27e42473cb6af9c65e5
18 ipsec-mb_tarball_md5sum_1.2  := f551d9c208893a436c1f5c146a615bd6
19 ipsec-mb_tarball_md5sum_1.3  := d8692db9efe32a263b61f12ac0dca950
20 ipsec-mb_tarball_md5sum_1.4  := fddba2611f822296ddd82d1c31d22b24
21 ipsec-mb_tarball_md5sum_1.5  := f18680f8dd43208a15a19a494423bdb9
22
23 ipsec-mb_tarball_md5sum      := $(ipsec-mb_tarball_md5sum_$(ipsec-mb_version))
24 ipsec-mb_tarball_strip_dirs  := 1
25 ipsec-mb_url                 := http://github.com/intel/intel-ipsec-mb/archive/$(ipsec-mb_tarball)
26
27 define  ipsec-mb_config_cmds
28         @true
29 endef
30
31 define  ipsec-mb_build_cmds
32         @make -C $(ipsec-mb_src_dir)/lib -j \
33           SHARED=n \
34           SAFE_PARAM=n \
35           SAFE_LOOKUP=n \
36           SAFE_DATA=n \
37           PREFIX=$(ipsec-mb_install_dir) \
38           EXTRA_CFLAGS="-g -msse4.2" > $(ipsec-mb_build_log)
39 endef
40
41 define  ipsec-mb_install_cmds
42         @mkdir -p $(ipsec-mb_install_dir)/include
43         @mkdir -p $(ipsec-mb_install_dir)/lib
44         @cp $(ipsec-mb_src_dir)/lib/intel-ipsec-mb.h $(ipsec-mb_install_dir)/include
45         @cp $(ipsec-mb_src_dir)/lib/libIPSec_MB.a $(ipsec-mb_install_dir)/lib
46 endef
47
48 $(eval $(call package,ipsec-mb))
49
50