mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-23 03:59:29 +00:00
31 lines
919 B
Makefile
31 lines
919 B
Makefile
|
package=native_expat
|
||
|
$(package)_version=2.6.3
|
||
|
$(package)_download_path=https://github.com/libexpat/libexpat/releases/download/R_$(subst .,_,$($(package)_version))/
|
||
|
$(package)_file_name=expat-$($(package)_version).tar.gz
|
||
|
$(package)_sha256_hash=17aa6cfc5c4c219c09287abfc10bc13f0c06f30bb654b28bfe6f567ca646eb79
|
||
|
$(package)_build_subdir=build
|
||
|
|
||
|
define $(package)_set_vars
|
||
|
$(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
|
||
|
endef
|
||
|
|
||
|
define $(package)_config_cmds
|
||
|
$($(package)_cmake) -S .. -B .
|
||
|
endef
|
||
|
|
||
|
define $(package)_build_cmds
|
||
|
$(MAKE)
|
||
|
endef
|
||
|
|
||
|
define $(package)_stage_cmds
|
||
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
||
|
endef
|
||
|
|
||
|
define $(package)_postprocess_cmds
|
||
|
rm -rf share lib/cmake
|
||
|
endef
|