2022-01-02 15:41:40 +00:00
|
|
|
#
|
2022-07-02 09:24:27 +00:00
|
|
|
# spec file for package liboqs
|
2022-01-02 15:41:40 +00:00
|
|
|
#
|
2022-07-02 09:24:27 +00:00
|
|
|
# Copyright (c) 2022 SUSE LLC
|
2022-01-02 15:41:40 +00:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2022-07-02 09:24:27 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2022-01-02 15:41:40 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: liboqs
|
|
|
|
Version: 0.7.1
|
|
|
|
Release: 0
|
2022-01-03 09:10:21 +00:00
|
|
|
Summary: C library for quantum-resistant cryptographic algorithms
|
2022-01-02 15:41:40 +00:00
|
|
|
License: MIT
|
|
|
|
Group: Productivity/Security
|
2022-07-02 09:24:27 +00:00
|
|
|
URL: https://github.com/open-quantum-safe/liboqs/
|
|
|
|
Source: https://github.com/open-quantum-safe/liboqs/archive/refs/tags/%{version}.tar.gz
|
|
|
|
Source1: baselibs.conf
|
|
|
|
Patch0: liboqs-fix-build.patch
|
|
|
|
# PATCH-FIX-UPSTREAM
|
|
|
|
Patch1: 0001-Add-support-for-powerpc64.-1160.patch
|
|
|
|
Patch2: 0002-Mark-stack-non-executable-when-compiling-with-clang-.patch
|
|
|
|
BuildRequires: cmake
|
|
|
|
BuildRequires: doxygen
|
|
|
|
BuildRequires: libopenssl-devel
|
2022-01-02 15:41:40 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
liboqs is an open source C library for quantum-resistant cryptographic
|
|
|
|
algorithms. Details about liboqs can be found in README.md. See in
|
|
|
|
particular limitations on intended use.
|
|
|
|
|
|
|
|
%package -n liboqs0
|
2022-01-03 09:10:21 +00:00
|
|
|
Summary: C library for quantum-resistant cryptographic algorithms
|
2022-01-02 15:41:40 +00:00
|
|
|
Group: System/Libraries
|
|
|
|
|
|
|
|
%description -n liboqs0
|
2022-07-02 09:24:27 +00:00
|
|
|
liboqs is a C library for quantum-resistant cryptographic
|
2022-01-02 15:41:40 +00:00
|
|
|
algorithms. Details about liboqs can be found in README.md. See in
|
|
|
|
particular limitations on intended use.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Open source C library for quantum-resistant cryptographic algorithms
|
|
|
|
Group: Development/Languages/C and C++
|
2022-07-02 09:24:27 +00:00
|
|
|
Requires: liboqs0 = %{version}
|
2022-01-02 15:41:40 +00:00
|
|
|
|
|
|
|
%description devel
|
2022-07-02 09:24:27 +00:00
|
|
|
liboqs is an open source C library for quantum-resistant cryptographic
|
2022-01-02 15:41:40 +00:00
|
|
|
algorithms. Details about liboqs can be found in README.md. See in
|
|
|
|
particular limitations on intended use.
|
|
|
|
|
|
|
|
%prep
|
2022-01-03 09:10:21 +00:00
|
|
|
%autosetup -p1
|
2022-01-02 15:41:40 +00:00
|
|
|
|
|
|
|
%build
|
2022-07-02 09:24:27 +00:00
|
|
|
export RPM_OPT_FLAGS="%{optflags} -std=gnu11"
|
|
|
|
|
|
|
|
# 20220702: The %%cmake macro can't be used because a 'CMakeLists.txt' folder
|
|
|
|
# exists
|
|
|
|
cmake -S . -B build -DBUILD_SHARED_LIBS:BOOL=ON -DOQS_DIST_BUILD:BOOL=ON
|
|
|
|
|
|
|
|
pushd build
|
|
|
|
%cmake_build
|
|
|
|
popd
|
2022-01-02 15:41:40 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%cmake_install
|
2022-07-02 09:24:27 +00:00
|
|
|
|
2022-01-02 15:41:40 +00:00
|
|
|
# need to find out what cmake option is needed
|
2022-07-02 09:24:27 +00:00
|
|
|
mv %{buildroot}%{_prefix}/local/* %{buildroot}%{_prefix}
|
|
|
|
|
|
|
|
if [ "%{_lib}" != "lib" ]; then
|
|
|
|
mv %{buildroot}%{_prefix}/lib %{buildroot}%{_libdir}
|
2022-01-02 15:41:40 +00:00
|
|
|
fi
|
2022-07-02 09:24:27 +00:00
|
|
|
|
|
|
|
rmdir %{buildroot}%{_prefix}/local/
|
2022-01-02 15:41:40 +00:00
|
|
|
|
|
|
|
%post -n liboqs0 -p /sbin/ldconfig
|
|
|
|
%postun -n liboqs0 -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files -n liboqs0
|
2022-07-02 09:24:27 +00:00
|
|
|
%license LICENSE.txt
|
|
|
|
%{_libdir}/liboqs.so.0*
|
2022-01-02 15:41:40 +00:00
|
|
|
|
|
|
|
%files devel
|
2022-07-02 09:24:27 +00:00
|
|
|
%license LICENSE.txt
|
2022-01-02 15:41:40 +00:00
|
|
|
%dir %{_includedir}/oqs
|
|
|
|
%{_includedir}/oqs/*
|
2022-07-02 09:24:27 +00:00
|
|
|
%{_libdir}/liboqs.so
|
|
|
|
%dir %{_libdir}/cmake/
|
|
|
|
%dir %{_libdir}/cmake/liboqs/
|
|
|
|
%{_libdir}/cmake/liboqs/liboqsConfig-noconfig.cmake
|
|
|
|
%{_libdir}/cmake/liboqs/liboqsConfig.cmake
|
2022-01-02 15:41:40 +00:00
|
|
|
|
|
|
|
%changelog
|