Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 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 | |
Dariusz Kazimierski | b5df85e | 2020-11-23 09:27:55 +0100 | [diff] [blame] | 14 | ipsec-mb_version := 0.55 |
Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 15 | ipsec-mb_tarball := v$(ipsec-mb_version).tar.gz |
| 16 | ipsec-mb_tarball_md5sum_0.49 := 3a2bee86f25f6c8ed720da5b4b8d4297 |
Damjan Marion | 59e0c8f | 2019-04-23 12:57:14 +0200 | [diff] [blame] | 17 | ipsec-mb_tarball_md5sum_0.52 := 11ecfa6db4dc0c4ca6e5c616c141ac46 |
Fan Zhang | d35fefe | 2019-11-04 16:32:28 +0000 | [diff] [blame] | 18 | ipsec-mb_tarball_md5sum_0.53 := e9b3507590efd1c23321518612b644cd |
PiotrX Kleski | 9235d43 | 2020-10-12 15:33:11 +0200 | [diff] [blame] | 19 | ipsec-mb_tarball_md5sum_0.54 := 258941f7ba90c275fcf9d19c622d2d21 |
Dariusz Kazimierski | b5df85e | 2020-11-23 09:27:55 +0100 | [diff] [blame] | 20 | ipsec-mb_tarball_md5sum_0.55 := deca674bca7ae2282890e1fa7f953609 |
| 21 | |
Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 22 | ipsec-mb_tarball_md5sum := $(ipsec-mb_tarball_md5sum_$(ipsec-mb_version)) |
| 23 | ipsec-mb_tarball_strip_dirs := 1 |
Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 24 | ipsec-mb_url := http://github.com/01org/intel-ipsec-mb/archive/$(ipsec-mb_tarball) |
Mohammed Hawari | fe909a6 | 2020-11-20 18:37:14 +0100 | [diff] [blame] | 25 | ipsec-mb_depends := nasm |
Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 26 | |
| 27 | define ipsec-mb_config_cmds |
| 28 | @true |
| 29 | endef |
| 30 | |
| 31 | define ipsec-mb_build_cmds |
PiotrX Kleski | 2e4813f | 2021-01-18 10:01:23 +0100 | [diff] [blame^] | 32 | @make -C $(ipsec-mb_src_dir)/lib -j \ |
Damjan Marion | 59e0c8f | 2019-04-23 12:57:14 +0200 | [diff] [blame] | 33 | SHARED=n \ |
Fan Zhang | 98e682d | 2020-11-26 17:01:05 +0000 | [diff] [blame] | 34 | SAFE_PARAM=n \ |
| 35 | SAFE_LOOKUP=n \ |
| 36 | SAFE_DATA=n \ |
Damjan Marion | 59e0c8f | 2019-04-23 12:57:14 +0200 | [diff] [blame] | 37 | PREFIX=$(ipsec-mb_install_dir) \ |
| 38 | NASM=$(ipsec-mb_install_dir)/bin/nasm \ |
Fan Zhang | d35fefe | 2019-11-04 16:32:28 +0000 | [diff] [blame] | 39 | EXTRA_CFLAGS="-g -msse4.2" > $(ipsec-mb_build_log) |
Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 40 | endef |
| 41 | |
| 42 | define ipsec-mb_install_cmds |
| 43 | @mkdir -p $(ipsec-mb_install_dir)/include |
Damjan Marion | 59e0c8f | 2019-04-23 12:57:14 +0200 | [diff] [blame] | 44 | @mkdir -p $(ipsec-mb_install_dir)/lib |
Dariusz Kazimierski | b5df85e | 2020-11-23 09:27:55 +0100 | [diff] [blame] | 45 | @cp $(ipsec-mb_src_dir)/lib/intel-ipsec-mb.h $(ipsec-mb_install_dir)/include |
| 46 | @cp $(ipsec-mb_src_dir)/lib/libIPSec_MB.a $(ipsec-mb_install_dir)/lib |
Damjan Marion | 561f273 | 2018-09-21 12:27:45 +0200 | [diff] [blame] | 47 | endef |
| 48 | |
| 49 | $(eval $(call package,ipsec-mb)) |
| 50 | |
| 51 | |