mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
7a68820b44
* depends: Use `_staging_dir` in `bls-dash` and `immer` packages the way it's suggested in `depends/packages.md` * depends: Do not build static binaries in `bls-dash` package
42 lines
1.7 KiB
Makefile
42 lines
1.7 KiB
Makefile
package=immer
|
|
$(package)_version=v0.6.2
|
|
$(package)_download_path=https://github.com/arximboldi/immer/archive
|
|
$(package)_download_file=$($(package)_version).tar.gz
|
|
$(package)_file_name=$(package)-$($(package)_download_file)
|
|
$(package)_sha256_hash=c3bb8847034437dee64adacb04e1e0163ae640b596c582eb4c0aa1d7c6447cd7
|
|
$(package)_build_subdir=build_tmp
|
|
$(package)_dependencies=cmake boost
|
|
|
|
define $(package)_fetch_cmds
|
|
$(call fetch_file,$(package),$($(package)_download_path),$($(package)_download_file),$($(package)_file_name),$($(package)_sha256_hash))
|
|
endef
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts=-DCMAKE_INSTALL_INCLUDEDIR=$(host_prefix)/include
|
|
$(package)_config_opts+=-DCMAKE_INSTALL_LIBDIR=$(host_prefix)/lib
|
|
$(package)_config_opts_linux=-DCMAKE_SYSTEM_NAME=Linux
|
|
$(package)_config_opts_darwin=-DCMAKE_SYSTEM_NAME=Darwin
|
|
$(package)_config_opts_mingw32=-DCMAKE_SYSTEM_NAME=Windows -DCMAKE_SHARED_LIBRARY_LINK_C_FLAGS=""
|
|
ifneq ($(darwin_native_toolchain),)
|
|
$(package)_config_opts_darwin+= -DCMAKE_AR="$(host_prefix)/native/bin/$($(package)_ar)"
|
|
$(package)_config_opts_darwin+= -DCMAKE_RANLIB="$(host_prefix)/native/bin/$($(package)_ranlib)"
|
|
endif
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
export CC="$($(package)_cc)" && \
|
|
export CXX="$($(package)_cxx)" && \
|
|
export CFLAGS="$($(package)_cflags) $($(package)_cppflags)" && \
|
|
export CXXFLAGS="$($(package)_cxxflags) $($(package)_cppflags)" && \
|
|
export LDFLAGS="$($(package)_ldflags)" && \
|
|
$(host_prefix)/bin/cmake ../ $($(package)_config_opts)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE) $($(package)_build_opts)
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
endef
|