mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-01 01:47:42 +00:00
27 lines
744 B
Makefile
27 lines
744 B
Makefile
package=native_protobuf
|
|
$(package)_version=3.21.12
|
|
$(package)_download_path=https://github.com/protocolbuffers/protobuf/releases/download/v21.12/
|
|
$(package)_file_name=protobuf-cpp-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=4eab9b524aa5913c6fffb20b2a8abf5ef7f95a80bc0701f3a6dbb4c607f73460
|
|
$(package)_cxxflags=-std=c++11
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts=--disable-shared --prefix=$(build_prefix)
|
|
$(package)_config_opts_linux=--with-pic
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE) -C src
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) -C src install
|
|
endef
|
|
|
|
define $(package)_postprocess_cmds
|
|
rm lib/libprotoc.a
|
|
endef
|