683b7d7a3f
We use pkg-config where we can, which generally replaces libtool at a higher level and does not have the same downsides as libtool. These archives sit in our depends tree with no purpose and pollute the final bitcoin build with massive overlinking.
34 lines
1 KiB
Makefile
34 lines
1 KiB
Makefile
package=protobuf
|
|
$(package)_version=$(native_$(package)_version)
|
|
$(package)_download_path=$(native_$(package)_download_path)
|
|
$(package)_file_name=$(native_$(package)_file_name)
|
|
$(package)_sha256_hash=$(native_$(package)_sha256_hash)
|
|
$(package)_dependencies=native_$(package)
|
|
$(package)_cxxflags=-std=c++11
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts=--disable-shared --with-protoc=$(build_prefix)/bin/protoc
|
|
$(package)_config_opts_linux=--with-pic
|
|
endef
|
|
|
|
define $(package)_preprocess_cmds
|
|
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub . &&\
|
|
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub gtest/build-aux
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE) -C src libprotobuf.la
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) -C src install-libLTLIBRARIES install-nobase_includeHEADERS &&\
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install-pkgconfigDATA
|
|
endef
|
|
|
|
define $(package)_postprocess_cmds
|
|
rm lib/libprotoc.a lib/*.la
|
|
endef
|