feather/contrib/depends/packages/expat.mk

31 lines
917 B
Makefile
Raw Normal View History

2022-06-02 12:50:33 +00:00
package=expat
2024-09-24 12:25:16 +00:00
$(package)_version=2.6.3
2022-06-02 12:50:33 +00:00
$(package)_download_path=https://github.com/libexpat/libexpat/releases/download/R_$(subst .,_,$($(package)_version))/
2024-09-24 12:25:16 +00:00
$(package)_file_name=$(package)-$($(package)_version).tar.gz
$(package)_sha256_hash=17aa6cfc5c4c219c09287abfc10bc13f0c06f30bb654b28bfe6f567ca646eb79
$(package)_build_subdir=build
2022-06-02 12:50:33 +00:00
define $(package)_set_vars
2024-09-24 12:25:16 +00:00
$(package)_config_opts := -DEXPAT_BUILD_TOOLS=OFF
$(package)_config_opts += -DEXPAT_BUILD_EXAMPLES=OFF
$(package)_config_opts += -DEXPAT_BUILD_TESTS=OFF
$(package)_config_opts += -DBUILD_SHARED_LIBS=OFF
$(package)_config_opts += -DCMAKE_POSITION_INDEPENDENT_CODE=ON
2022-06-02 12:50:33 +00:00
endef
define $(package)_config_cmds
2024-09-24 12:25:16 +00:00
$($(package)_cmake) -S .. -B .
2022-06-02 12:50:33 +00:00
endef
define $(package)_build_cmds
$(MAKE)
endef
define $(package)_stage_cmds
$(MAKE) DESTDIR=$($(package)_staging_dir) install
endef
define $(package)_postprocess_cmds
2024-09-24 12:25:16 +00:00
rm -rf share lib/cmake
endef