genode/libports/ports/zlib.mk
Stephan Mueller 056e0792e5 libports: Verify signatures of 3rd-party code
This patch adds integrity checks for the packages of the libports
repository.

Issue #748
2013-06-10 10:44:09 +02:00

36 lines
930 B
Makefile

ZLIB_VERSION = 1.2.8
ZLIB = zlib-$(ZLIB_VERSION)
ZLIB_TGZ = $(ZLIB).tar.gz
ZLIB_URL = http://downloads.sourceforge.net/project/libpng/zlib/$(ZLIB_VERSION)/$(ZLIB_TGZ)
ZLIB_MD5 = 44d667c142d7cda120332623eab69f40
#
# Interface to top-level prepare Makefile
#
PORTS += $(ZLIB)
prepare-zlib: $(CONTRIB_DIR)/$(ZLIB) include/zlib
$(CONTRIB_DIR)/$(ZLIB):clean-zlib
#
# Port-specific local rules
#
$(DOWNLOAD_DIR)/$(ZLIB_TGZ):
$(VERBOSE)wget -c -P $(DOWNLOAD_DIR) $(ZLIB_URL) && touch $@
$(VERBOSE)$(HASHVERIFIER) $(DOWNLOAD_DIR)/$(ZLIB_TGZ) $(ZLIB_MD5) md5
$(CONTRIB_DIR)/$(ZLIB): $(DOWNLOAD_DIR)/$(ZLIB_TGZ)
$(VERBOSE)tar xfz $< -C $(CONTRIB_DIR) && touch $@
ZLIB_INCLUDES = zconf.h zlib.h
include/zlib:
$(VERBOSE)mkdir -p $@
$(VERBOSE)for i in $(ZLIB_INCLUDES); do \
ln -sf ../../$(CONTRIB_DIR)/$(ZLIB)/$$i $@; done
clean-zlib:
$(VERBOSE)rm -rf include/zlib
$(VERBOSE)rm -rf $(CONTRIB_DIR)/$(ZLIB)