bitcoin/depends/packages/libevent.mk

41 lines
1.2 KiB
Makefile
Raw Normal View History

2015-01-19 22:47:44 -05:00
package=libevent
2017-05-02 06:55:36 +08:00
$(package)_version=2.1.8-stable
2017-01-04 22:00:26 +08:00
$(package)_download_path=https://github.com/libevent/libevent/archive/
2017-05-02 06:55:36 +08:00
$(package)_file_name=release-$($(package)_version).tar.gz
$(package)_sha256_hash=316ddb401745ac5d222d7c529ef1eada12f58f6376a66c1118eee803cb70f83d
$(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
2015-01-19 22:47:44 -05:00
define $(package)_set_vars
$(package)_config_opts=--disable-shared --disable-openssl --disable-libevent-regress --disable-samples
$(package)_config_opts += --disable-dependency-tracking --enable-option-checking
2015-01-19 22:47:44 -05:00
$(package)_config_opts_release=--disable-debug-mode
$(package)_config_opts_linux=--with-pic
$(package)_config_opts_android=--with-pic
2015-01-19 22:47:44 -05:00
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 lib/*.la
2015-01-19 22:47:44 -05:00
endef