mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 05:03:26 +01:00
e81ab9bc2c
4 warnings remain but it's better than before
37 lines
1.0 KiB
Makefile
37 lines
1.0 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
|
|
$(package)_patches=visibility.patch
|
|
|
|
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
|
|
patch -p0 < $($(package)_patch_dir)/visibility.patch
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf) AR_FLAGS=$($(package)_arflags)
|
|
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 &&\
|
|
rm lib/*.la
|
|
endef
|
|
|