mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 06:33:31 +00:00
056e0792e5
This patch adds integrity checks for the packages of the libports repository. Issue #748
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
include lib/import/import-mpc.mk
|
|
|
|
MPC_TGZ = $(MPC).tar.gz
|
|
MPC_SIG = $(MPC_TGZ).asc
|
|
MPC_BASE_URL = http://www.multiprecision.org/mpc/download
|
|
MPC_URL = $(MPC_BASE_URL)/$(MPC_TGZ)
|
|
MPC_URL_SIG = $(MPC_BASE_URL)/$(MPC_SIG)
|
|
# see http://www.multiprecision.org/index.php?prog=mpc&page=download
|
|
MPC_KEY = AD17A21EF8AED8F1CC02DBD9F7D5C9BF765C61E3
|
|
|
|
|
|
#
|
|
# Interface to top-level prepare Makefile
|
|
#
|
|
PORTS += $(MPC)
|
|
|
|
MPC_INCLUDES = include/mpc/mpc.h
|
|
|
|
prepare-mpc: $(CONTRIB_DIR)/$(MPC) $(MPC_INCLUDES)
|
|
|
|
$(CONTRIB_DIR)/$(MPC): clean-mpc
|
|
|
|
#
|
|
# Port-specific local rules
|
|
#
|
|
$(DOWNLOAD_DIR)/$(MPC_TGZ):
|
|
$(VERBOSE)wget -c -P $(DOWNLOAD_DIR) $(MPC_URL) && touch $@
|
|
$(VERBOSE)wget -c -P $(DOWNLOAD_DIR) $(MPC_URL_SIG) && touch $@
|
|
$(VERBOSE)$(SIGVERIFIER) $(DOWNLOAD_DIR)/$(MPC_TGZ) $(DOWNLOAD_DIR)/$(MPC_SIG) $(MPC_KEY)
|
|
|
|
$(CONTRIB_DIR)/$(MPC): $(DOWNLOAD_DIR)/$(MPC_TGZ)
|
|
$(VERBOSE)tar xfz $< -C $(CONTRIB_DIR) && touch $@
|
|
|
|
include/mpc/mpc.h:
|
|
$(VERBOSE)mkdir -p $(dir $@)
|
|
$(VERBOSE)ln -sf ../../$(CONTRIB_DIR)/$(MPC)/src/mpc.h $@
|
|
|
|
clean-mpc:
|
|
$(VERBOSE)rm -f $(MPC_INCLUDES)
|
|
$(VERBOSE)rm -rf $(CONTRIB_DIR)/$(MPC)
|