You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

113 lines
4.1 KiB

##
## ssss.spec -- OpenPKG RPM Package Specification
## Copyright (c) 2000-2022 OpenPKG Project <http://openpkg.org/>
##
## Permission to use, copy, modify, and distribute this software for
## any purpose with or without fee is hereby granted, provided that
## the above copyright notice and this permission notice appear in all
## copies.
##
## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
## SUCH DAMAGE.
##
# package version
%define V_ssss 0.5
%define V_xmltoman 0.6
# package information
Name: ssss
Summary: Shamir's Secret Sharing Scheme (SSSS)
URL: http://www.point-at-infinity.org/ssss/
Vendor: B. Poettering
Packager: OpenPKG Project
Distribution: OpenPKG Community
Class: EVAL
Group: Cryptography
License: GPL
Version: %{V_ssss}
Release: 20190714
# list of sources
Source0: http://point-at-infinity.org/ssss/ssss-%{V_ssss}.tar.gz
Source1: http://ftp.debian.org/debian/pool/main/x/xmltoman/xmltoman_%{V_xmltoman}.orig.tar.gz
Patch0: ssss.patch
# build information
BuildPreReq: OpenPKG, openpkg >= 20160101, perl, perl-xml
PreReq: OpenPKG, openpkg >= 20160101
BuildPreReq: gmp
PreReq: gmp
%description
In cryptography, a secret sharing scheme is a method for
distributing a secret amongst a group of participants, each of
which is allocated a share of the secret. The secret can only be
reconstructed when the shares are combined together; individual
shares are of no use on their own. More formally, in a secret
sharing scheme there is one dealer and n players. The dealer gives
a secret to the players, but only when specific conditions are
fulfilled. The dealer accomplishes this by giving each player a
share in such a way that any group of t (for threshold) or more
players can together reconstruct the secret but no group of less
than t players can. Such a system is called a (t,n)-threshold
scheme. A popular technique to implement threshold schemes uses
polynomial interpolation ("Lagrange interpolation"). This method was
invented by Adi Shamir in 1979. ssss(4) implements this.
%track
prog ssss = {
version = %{V_ssss}
url = http://www.point-at-infinity.org/ssss/
regex = ssss-(__VER__)\.tar\.gz
}
prog ssss:xmltoman = {
version = %{V_xmltoman}
url = http://ftp.debian.org/debian/pool/main/x/xmltoman/
regex = xmltoman_(__VER__)\.orig\.tar\.gz
}
%prep
%setup -q
mkdir xmltoman
( cd xmltoman && %{l_gzip} -d -c %{SOURCE1} | %{l_tar} xf - ) || exit $?
%patch -p0
%build
%{l_make} %{l_mflags} \
CC="%{l_cc}" \
CFLAGS="%{l_cflags -O}" \
CPPFLAGS="%{l_cppflags} -DNOMLOCK" \
LDFLAGS="%{l_ldflags}" \
ssss-split
%{l_prefix}/bin/perl \
xmltoman/xmltoman \
ssss.manpage.xml >ssss.1
%install
%{l_shtool} mkdir -f -p -m 755 \
$RPM_BUILD_ROOT%{l_prefix}/bin \
$RPM_BUILD_ROOT%{l_prefix}/man/man1
%{l_shtool} install -c -s -m 755 \
ssss-split $RPM_BUILD_ROOT%{l_prefix}/bin/
%{l_shtool} mkln \
$RPM_BUILD_ROOT%{l_prefix}/bin/ssss-split \
$RPM_BUILD_ROOT%{l_prefix}/bin/ssss-combine
%{l_shtool} install -c -m 644 \
ssss.1 $RPM_BUILD_ROOT%{l_prefix}/man/man1/
%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
%files -f files
%clean