2015-07-10 19:42:05 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2014 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:=expat
|
2024-04-26 09:24:41 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:libexpat:libexpat
|
2024-09-13 10:22:28 +00:00
|
|
|
PKG_VERSION:=2.6.3
|
2015-07-10 19:42:05 +00:00
|
|
|
|
2024-04-03 17:12:57 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2024-09-13 10:22:28 +00:00
|
|
|
PKG_HASH:=17aa6cfc5c4c219c09287abfc10bc13f0c06f30bb654b28bfe6f567ca646eb79
|
2019-11-23 18:28:47 +00:00
|
|
|
PKG_SOURCE_URL:=https://github.com/libexpat/libexpat/releases/download/R_$(subst .,_,$(PKG_VERSION))
|
2015-07-10 19:42:05 +00:00
|
|
|
|
2022-09-25 00:11:52 +00:00
|
|
|
HOST_BUILD_PARALLEL:=1
|
|
|
|
|
2015-07-10 19:42:05 +00:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
2022-09-25 00:11:52 +00:00
|
|
|
|
|
|
|
HOSTCC := $(HOSTCC_NOCACHE)
|
|
|
|
|
|
|
|
HOST_CONFIGURE_ARGS += \
|
|
|
|
--disable-shared \
|
|
|
|
--without-docbook \
|
2024-02-15 10:52:29 +00:00
|
|
|
--without-tests \
|
2022-09-25 00:11:52 +00:00
|
|
|
--with-pic
|
|
|
|
|
|
|
|
define Host/Uninstall
|
|
|
|
-$(call Host/Compile/Default,uninstall)
|
|
|
|
endef
|
2015-07-10 19:42:05 +00:00
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|