github.com/evdatsion/aphelion-dpos-bft@v0.32.1/tools/build/spectemplates/tendermint.spec (about)

     1  Version: @VERSION@
     2  Release: @BUILD_NUMBER@
     3  
     4  %define __spec_install_post %{nil}
     5  %define debug_package       %{nil}
     6  %define __os_install_post   %{nil}
     7  
     8  Name: tendermint
     9  Summary: securely and consistently replicate an application on many machines
    10  License: Apache 2.0
    11  URL: https:/.com/
    12  Packager: Greg Szabo
    13  
    14  %description
    15  Tendermint is software for securely and consistently replicating an application on many machines. By securely, we mean that Tendermint works even if up to 1/3 of machines fail in arbitrary ways. By consistently, we mean that every non-faulty machine sees the same transaction log and computes the same state.
    16  
    17  %prep
    18  # Nothing to do here. - It is done in the Makefile.
    19  
    20  %build
    21  # Nothing to do here.
    22  
    23  %install
    24  cd %{name}-%{version}-%{release}
    25  %{__cp} -a * %{buildroot}
    26  
    27  %files
    28  %{_bindir}
    29  %dir %{_defaultlicensedir}/%{name}
    30  %doc %{_defaultlicensedir}/%{name}/LICENSE
    31