blob: 638f3c2de1792ab8673ab0e1602c1ef780b909bc [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
Ranjan Raj40242b82023-07-07 06:09:50 +000014ipsec-mb_version := 1.4
Damjan Marion561f2732018-09-21 12:27:45 +020015ipsec-mb_tarball := v$(ipsec-mb_version).tar.gz
Damjan Marionc62252d2021-05-07 09:20:54 +020016ipsec-mb_tarball_md5sum_1.0 := 906e701937751e761671dc83a41cff65
Marcel Cornue15245d2022-01-13 23:48:54 +000017ipsec-mb_tarball_md5sum_1.1 := 3916471d3713d27e42473cb6af9c65e5
Marcel Cornuc711bd02022-03-04 17:33:12 +000018ipsec-mb_tarball_md5sum_1.2 := f551d9c208893a436c1f5c146a615bd6
Marcel Cornu2a6f35f2022-10-05 12:08:05 +010019ipsec-mb_tarball_md5sum_1.3 := d8692db9efe32a263b61f12ac0dca950
Ranjan Raj40242b82023-07-07 06:09:50 +000020ipsec-mb_tarball_md5sum_1.4 := fddba2611f822296ddd82d1c31d22b24
Dariusz Kazimierskib5df85e2020-11-23 09:27:55 +010021
Damjan Marion561f2732018-09-21 12:27:45 +020022ipsec-mb_tarball_md5sum := $(ipsec-mb_tarball_md5sum_$(ipsec-mb_version))
23ipsec-mb_tarball_strip_dirs := 1
Marcel Cornu2a6f35f2022-10-05 12:08:05 +010024ipsec-mb_url := http://github.com/intel/intel-ipsec-mb/archive/$(ipsec-mb_tarball)
Damjan Marion561f2732018-09-21 12:27:45 +020025
26define ipsec-mb_config_cmds
27 @true
28endef
29
30define ipsec-mb_build_cmds
PiotrX Kleski2e4813f2021-01-18 10:01:23 +010031 @make -C $(ipsec-mb_src_dir)/lib -j \
Damjan Marion59e0c8f2019-04-23 12:57:14 +020032 SHARED=n \
Fan Zhang98e682d2020-11-26 17:01:05 +000033 SAFE_PARAM=n \
34 SAFE_LOOKUP=n \
35 SAFE_DATA=n \
Damjan Marion59e0c8f2019-04-23 12:57:14 +020036 PREFIX=$(ipsec-mb_install_dir) \
Fan Zhangd35fefe2019-11-04 16:32:28 +000037 EXTRA_CFLAGS="-g -msse4.2" > $(ipsec-mb_build_log)
Damjan Marion561f2732018-09-21 12:27:45 +020038endef
39
40define ipsec-mb_install_cmds
41 @mkdir -p $(ipsec-mb_install_dir)/include
Damjan Marion59e0c8f2019-04-23 12:57:14 +020042 @mkdir -p $(ipsec-mb_install_dir)/lib
Dariusz Kazimierskib5df85e2020-11-23 09:27:55 +010043 @cp $(ipsec-mb_src_dir)/lib/intel-ipsec-mb.h $(ipsec-mb_install_dir)/include
44 @cp $(ipsec-mb_src_dir)/lib/libIPSec_MB.a $(ipsec-mb_install_dir)/lib
Damjan Marion561f2732018-09-21 12:27:45 +020045endef
46
47$(eval $(call package,ipsec-mb))
48
49