mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
package=libevent
|
|
$(package)_version=2.1.8
|
|
$(package)_download_path=https://github.com/libevent/libevent/releases/download/release-$($(package)_version)-stable
|
|
$(package)_file_name=$(package)-$($(package)_version)-stable.tar.gz
|
|
$(package)_sha256_hash=965cc5a8bb46ce4199a47e9b2c9e1cae3b137e8356ffdad6d94d3b9069b71dc2
|
|
$(package)_patches=fix_android_arc4random_addrandom.patch
|
|
|
|
ifneq (,$(findstring android,$(host)))
|
|
define $(package)_preprocess_cmds
|
|
./autogen.sh && patch -p1 < $($(package)_patch_dir)/fix_android_arc4random_addrandom.patch
|
|
endef
|
|
else
|
|
define $(package)_preprocess_cmds
|
|
./autogen.sh
|
|
endef
|
|
endif
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts=--disable-shared --disable-openssl --disable-libevent-regress --disable-samples
|
|
$(package)_config_opts_release=--disable-debug-mode
|
|
$(package)_config_opts_linux=--with-pic
|
|
$(package)_config_opts_android=--with-pic
|
|
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
|
|
endef
|