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
|
2017-09-28 02:55:46 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:libexpat:expat
|
2022-10-26 08:43:19 +00:00
|
|
|
PKG_VERSION:=2.5.0
|
2015-07-10 19:42:05 +00:00
|
|
|
|
2022-10-02 09:22:23 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
2022-10-26 08:43:19 +00:00
|
|
|
PKG_HASH:=ef2420f0232c087801abf705e89ae65f6257df6b7931d37846a193ef2e8cdcbe
|
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 \
|
|
|
|
--with-pic
|
|
|
|
|
|
|
|
define Host/Uninstall
|
|
|
|
-$(call Host/Compile/Default,uninstall)
|
|
|
|
endef
|
2015-07-10 19:42:05 +00:00
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|