mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
Add Google Protocol Buffers as a 3prd party package for RTEMS.
https://developers.google.com/protocol-buffers/
This commit is contained in:
parent
b31d5e2dd9
commit
8a7428c94b
2
rtems/.gitignore
vendored
2
rtems/.gitignore
vendored
@ -9,3 +9,5 @@ build
|
||||
#*#
|
||||
.*
|
||||
log_*
|
||||
*.log
|
||||
*.txt
|
||||
|
20
rtems/config/4.11/net/protobuf.bset
Normal file
20
rtems/config/4.11/net/protobuf.bset
Normal file
@ -0,0 +1,20 @@
|
||||
#
|
||||
# Build set for Google Protocol Buffers
|
||||
#
|
||||
|
||||
%define release 1
|
||||
|
||||
#
|
||||
# RTEMS Version
|
||||
#
|
||||
%define rtems_version 4.11
|
||||
|
||||
#
|
||||
# The RTEMS URL paths.
|
||||
#
|
||||
%include rtems-urls.bset
|
||||
|
||||
#
|
||||
# Build Protocol Buffers.
|
||||
#
|
||||
net/protobuf-2.6.1-1
|
21
rtems/config/net/protobuf-2.6.1-1.cfg
Normal file
21
rtems/config/net/protobuf-2.6.1-1.cfg
Normal file
@ -0,0 +1,21 @@
|
||||
#
|
||||
# Google Protocol Buffers 2.6.1
|
||||
#
|
||||
|
||||
%if %{release} == %{nil}
|
||||
%define release 1
|
||||
%endif
|
||||
|
||||
%include %{_configdir}/rtems-bsp.cfg
|
||||
|
||||
#
|
||||
# Google Protocol Buffers Version
|
||||
#
|
||||
%define protobuf_version 2.6.1
|
||||
|
||||
%hash md5 protobuf-%{protobuf_version}.tar.gz f3916ce13b7fcb3072a1fa8cf02b2423
|
||||
|
||||
#
|
||||
# Protocol Buffers configuration
|
||||
#
|
||||
%include %{_configdir}/protobuf-2-1.cfg
|
73
source-builder/config/protobuf-2-1.cfg
Normal file
73
source-builder/config/protobuf-2-1.cfg
Normal file
@ -0,0 +1,73 @@
|
||||
#
|
||||
# Google Protocol Buffers 2.x.x Version 1.
|
||||
#
|
||||
# This configuration file configure's, make's and install's Protocol Buffers
|
||||
#
|
||||
|
||||
%if %{release} == %{nil}
|
||||
%define release 1
|
||||
%endif
|
||||
|
||||
Name: protobuf-%{protobuf_version}-%{_host}-%{release}
|
||||
Summary: Protocol buffers are Googles language-neutral,
|
||||
platform-neutral, extensible mechanism for serializing
|
||||
structured data.
|
||||
Version: %{protobuf_version}
|
||||
Release: %{release}
|
||||
URL: https://developers.google.com/protocol-buffers/
|
||||
BuildRoot: %{_tmppath}/%{name}-root-%(%{__id_u} -n)
|
||||
|
||||
#
|
||||
# Protocol Buffers Source
|
||||
#
|
||||
%source set protobuf https://github.com/google/protobuf/releases/download/v%{protobuf_version}/protobuf-%{protobuf_version}.tar.gz
|
||||
|
||||
#
|
||||
# Prepare the source code.
|
||||
#
|
||||
%prep
|
||||
build_top=$(pwd)
|
||||
|
||||
source_dir_protobuf="protobuf-%{protobuf_version}"
|
||||
%source setup protobuf -q -n protobuf-%{protobuf_version}
|
||||
%patch setup protobuf -p1
|
||||
|
||||
cd ${build_top}
|
||||
|
||||
%build
|
||||
build_top=$(pwd)
|
||||
|
||||
%{build_directory}
|
||||
|
||||
mkdir -p ${build_dir}
|
||||
cd ${build_dir}
|
||||
|
||||
%define host_cxxflags %{host_cxxflags} -fpermissive
|
||||
|
||||
%{host_build_flags}
|
||||
|
||||
../${source_dir_protobuf}/configure \
|
||||
--host=%{_host} \
|
||||
--prefix=%{_prefix} \
|
||||
--bindir=%{_bindir} \
|
||||
--exec_prefix=%{_exec_prefix} \
|
||||
--includedir=%{_includedir} \
|
||||
--libdir=%{_libdir} \
|
||||
--libexecdir=%{_libexecdir} \
|
||||
--mandir=%{_mandir} \
|
||||
--infodir=%{_infodir} \
|
||||
--datadir=%{_datadir} \
|
||||
--with-protoc=true
|
||||
|
||||
%{__make} %{?_smp_mflags} all
|
||||
|
||||
cd ${build_top}
|
||||
|
||||
%install
|
||||
build_top=$(pwd)
|
||||
|
||||
%{__rmdir} $SB_BUILD_ROOT
|
||||
|
||||
cd ${build_dir}
|
||||
%{__make} DESTDIR=$SB_BUILD_ROOT install
|
||||
cd ${build_top}
|
Loading…
x
Reference in New Issue
Block a user