mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-01 09:57:46 +00:00
31 lines
No EOL
1 KiB
Makefile
31 lines
No EOL
1 KiB
Makefile
package=expat
|
|
$(package)_version=2.5.0
|
|
$(package)_download_path=https://github.com/libexpat/libexpat/releases/download/R_$(subst .,_,$($(package)_version))/
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.bz2
|
|
$(package)_sha256_hash=6f0e6e01f7b30025fa05c85fdad1e5d0ec7fd35d9f61b22f34998de11969ff67
|
|
|
|
# -D_DEFAULT_SOURCE defines __USE_MISC, which exposes additional
|
|
# definitions in endian.h, which are required for a working
|
|
# endianess check in configure when building with -flto.
|
|
define $(package)_set_vars
|
|
$(package)_config_opts=--disable-shared --without-docbook --without-tests --without-examples
|
|
$(package)_config_opts += --disable-dependency-tracking --enable-option-checking
|
|
$(package)_config_opts += --without-xmlwf --with-pic
|
|
$(package)_cppflags += -D_DEFAULT_SOURCE
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf)
|
|
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 lib/*.la
|
|
endef |