genode/repos/libports/ports/ffi.port
Emery Hemingway 72cb71c827 Replace SHA1 hashes of port downloads with SHA256
Now SHA256 has been shown to be an adequate replacement for SHA1, use
SHA256 for verifying all port downloads.

Ref #2767
2018-05-30 13:36:22 +02:00

47 lines
1.2 KiB
Plaintext

LICENSE := MIT
DOWNLOADS := ffi.archive
VERSION := 3.2.1
URL(ffi) := https://github.com/libffi/libffi/archive/v$(VERSION).tar.gz
SHA(ffi) := 96d08dee6f262beea1a18ac9a3801f64018dc4521895e9198d029d6850febe23
DIR(ffi) := src/lib/ffi
$(call check_tool,sed)
DIRS := include/ffi/x86_64 include/ffi/arm
DIR_CONTENT(include/ffi/x86_64) := src/lib/ffi/src/x86/ffitarget.h
DIR_CONTENT(include/ffi/arm) := src/lib/ffi/src/arm/ffitarget.h
gen_inc := ffi.h
gen_files := $(addprefix include/ffi/x86_64/,$(gen_inc)) \
$(addprefix include/ffi/arm/,$(gen_inc))
default: $(gen_files)
$(gen_files): _dirs
subst_x86_64 := \
"@TARGET@/X86_64" \
"@HAVE_LONG_DOUBLE@/1" \
"@HAVE_LONG_DOUBLE_VARIANT@/0" \
"@FFI_EXEC_TRAMPOLINE_TABLE@/0"
subst_ARM := \
"@TARGET@/ARM" \
"@HAVE_LONG_DOUBLE@/0" \
"@HAVE_LONG_DOUBLE_VARIANT@/0" \
"@FFI_EXEC_TRAMPOLINE_TABLE@/0"
apply_substitutions = $(VERBOSE)for i in $(2); do sed -i "s/$$i/g" $(1); done
include/ffi/x86_64/ffi.h:
@$(MSG_GENERATE)$@
$(VERBOSE)cp src/lib/ffi/include/ffi.h.in $@
$(call apply_substitutions,$@,$(subst_x86_64))
include/ffi/arm/ffi.h:
@$(MSG_GENERATE)$@
$(VERBOSE)cp src/lib/ffi/include/ffi.h.in $@
$(call apply_substitutions,$@,$(subst_ARM))