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 | |
| 14 | ipsec-mb_version := 0.49 |
| 15 | ipsec-mb_tarball := v$(ipsec-mb_version).tar.gz |
| 16 | ipsec-mb_tarball_md5sum_0.49 := 3a2bee86f25f6c8ed720da5b4b8d4297 |
| 17 | ipsec-mb_tarball_md5sum_0.50 := c847ed77ae34da551237349f1c9db1e9 |
| 18 | ipsec-mb_tarball_md5sum := $(ipsec-mb_tarball_md5sum_$(ipsec-mb_version)) |
| 19 | ipsec-mb_tarball_strip_dirs := 1 |
| 20 | ipsec-mb_depends := nasm |
| 21 | ipsec-mb_url := http://github.com/01org/intel-ipsec-mb/archive/$(ipsec-mb_tarball) |
| 22 | |
| 23 | define ipsec-mb_config_cmds |
| 24 | @true |
| 25 | endef |
| 26 | |
| 27 | define ipsec-mb_build_cmds |
| 28 | @true |
| 29 | endef |
| 30 | |
| 31 | define ipsec-mb_install_cmds |
| 32 | @mkdir -p $(ipsec-mb_install_dir)/include |
| 33 | @make -C $(ipsec-mb_src_dir) -j \ |
| 34 | SHARED=n \ |
| 35 | EXTRA_CFLAGS=-fPIC \ |
| 36 | NASM=$(ipsec-mb_install_dir)/bin/nasm \ |
| 37 | PREFIX=$(ipsec-mb_install_dir) \ |
| 38 | install > $(ipsec-mb_install_log) |
| 39 | endef |
| 40 | |
| 41 | $(eval $(call package,ipsec-mb)) |
| 42 | |
| 43 | |