29 lines
853 B
Makefile
29 lines
853 B
Makefile
package=native_protobuf
|
|
$(package)_version=21.12
|
|
$(package)_version_protobuf_cpp=3.21.12
|
|
$(package)_download_path=https://github.com/protocolbuffers/protobuf/releases/download/v$($(package)_version)/
|
|
$(package)_file_name=protobuf-cpp-$($(package)_version_protobuf_cpp).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 protoc
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) -C src install-binPROGRAMS install-nobase_dist_protoDATA
|
|
endef
|
|
|
|
define $(package)_postprocess_cmds
|
|
rm -rf lib/
|
|
endef
|