blob: 0155a04b57717c2bdfd4a54edd203c4d869a34d2 [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
PiotrX Kleski9235d432020-10-12 15:33:11 +020014ipsec-mb_version := 0.54
Damjan Marion561f2732018-09-21 12:27:45 +020015ipsec-mb_tarball := v$(ipsec-mb_version).tar.gz
16ipsec-mb_tarball_md5sum_0.49 := 3a2bee86f25f6c8ed720da5b4b8d4297
Damjan Marion59e0c8f2019-04-23 12:57:14 +020017ipsec-mb_tarball_md5sum_0.52 := 11ecfa6db4dc0c4ca6e5c616c141ac46
Fan Zhangd35fefe2019-11-04 16:32:28 +000018ipsec-mb_tarball_md5sum_0.53 := e9b3507590efd1c23321518612b644cd
PiotrX Kleski9235d432020-10-12 15:33:11 +020019ipsec-mb_tarball_md5sum_0.54 := 258941f7ba90c275fcf9d19c622d2d21
Damjan Marion561f2732018-09-21 12:27:45 +020020ipsec-mb_tarball_md5sum := $(ipsec-mb_tarball_md5sum_$(ipsec-mb_version))
21ipsec-mb_tarball_strip_dirs := 1
Damjan Marion561f2732018-09-21 12:27:45 +020022ipsec-mb_url := http://github.com/01org/intel-ipsec-mb/archive/$(ipsec-mb_tarball)
23
24define ipsec-mb_config_cmds
25 @true
26endef
27
28define ipsec-mb_build_cmds
Damjan Marion59e0c8f2019-04-23 12:57:14 +020029 @make -C $(ipsec-mb_src_dir) -j \
30 SHARED=n \
31 PREFIX=$(ipsec-mb_install_dir) \
32 NASM=$(ipsec-mb_install_dir)/bin/nasm \
Fan Zhangd35fefe2019-11-04 16:32:28 +000033 EXTRA_CFLAGS="-g -msse4.2" > $(ipsec-mb_build_log)
Damjan Marion561f2732018-09-21 12:27:45 +020034endef
35
36define ipsec-mb_install_cmds
37 @mkdir -p $(ipsec-mb_install_dir)/include
Damjan Marion59e0c8f2019-04-23 12:57:14 +020038 @mkdir -p $(ipsec-mb_install_dir)/lib
39 @cp $(ipsec-mb_src_dir)/intel-ipsec-mb.h $(ipsec-mb_install_dir)/include
40 @cp $(ipsec-mb_src_dir)/libIPSec_MB.a $(ipsec-mb_install_dir)/lib
Damjan Marion561f2732018-09-21 12:27:45 +020041endef
42
43$(eval $(call package,ipsec-mb))
44
45