mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	Switch to "https github.com" for downloading source files. Release Announcements: https://github.com/madler/zlib/releases/tag/v1.2.13 Signed-off-by: Nick Hainke <vincent@systemli.org>
		
			
				
	
	
		
			42 lines
		
	
	
		
			957 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			957 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Copyright (C) 2006-2013 OpenWrt.org
 | 
						|
#
 | 
						|
# This is free software, licensed under the GNU General Public License v2.
 | 
						|
# See /LICENSE for more information.
 | 
						|
#
 | 
						|
 | 
						|
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
PKG_NAME:=zlib
 | 
						|
PKG_VERSION:=1.2.13
 | 
						|
PKG_RELEASE:=1
 | 
						|
 | 
						|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 | 
						|
PKG_SOURCE_URL:=https://github.com/madler/zlib/releases/download/v$(PKG_VERSION)
 | 
						|
PKG_HASH:=d14c38e313afc35a9a8760dadf26042f51ea0f5d154b0630a31da0540107fb98
 | 
						|
 | 
						|
PKG_LICENSE:=Zlib
 | 
						|
PKG_LICENSE_FILES:=README
 | 
						|
PKG_CPE_ID:=cpe:/a:gnu:zlib
 | 
						|
 | 
						|
HOST_BUILD_PARALLEL:=1
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/host-build.mk
 | 
						|
 | 
						|
HOSTCC := $(HOSTCC_NOCACHE)
 | 
						|
HOST_CFLAGS += $(HOST_FPIC)
 | 
						|
 | 
						|
HOST_CONFIGURE_ARGS = \
 | 
						|
	--prefix=$(STAGING_DIR_HOST) \
 | 
						|
	--sysconfdir=$(STAGING_DIR_HOST)/etc \
 | 
						|
	--localstatedir=$(STAGING_DIR_HOST)/var \
 | 
						|
	--libdir=$(STAGING_DIR_HOST)/lib \
 | 
						|
	--includedir=$(STAGING_DIR_HOST)/include \
 | 
						|
	--static
 | 
						|
 | 
						|
define Host/Uninstall
 | 
						|
	-$(call Host/Compile/Default,uninstall)
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call HostBuild))
 |