lede/tools/expat/Makefile

35 lines
766 B
Makefile
Raw Normal View History

2017-09-06 11:19:45 +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
PKG_CPE_ID:=cpe:/a:libexpat:libexpat
PKG_VERSION:=2.6.3
2017-09-06 11:19:45 +00:00
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_HASH:=17aa6cfc5c4c219c09287abfc10bc13f0c06f30bb654b28bfe6f567ca646eb79
2020-07-02 15:30:56 +00:00
PKG_SOURCE_URL:=https://github.com/libexpat/libexpat/releases/download/R_$(subst .,_,$(PKG_VERSION))
2017-09-06 11:19:45 +00:00
2022-03-07 12:29:29 +00:00
HOST_BUILD_PARALLEL:=1
2017-09-06 11:19:45 +00:00
include $(INCLUDE_DIR)/host-build.mk
2022-03-07 12:29:29 +00:00
HOSTCC := $(HOSTCC_NOCACHE)
2022-03-07 12:29:29 +00:00
HOST_CONFIGURE_ARGS += \
--disable-shared \
--without-docbook \
--without-tests \
--with-pic
2022-03-07 12:29:29 +00:00
define Host/Uninstall
-$(call Host/Compile/Default,uninstall)
2022-03-07 12:29:29 +00:00
endef
$(eval $(call HostBuild))