forked from pool/doctest
Luigi Baldoni
13512729b9
- Add GCC 11 compatibility fix: * 0001-Fix-build-with-GCC-11.patch OBS-URL: https://build.opensuse.org/request/show/896630 OBS-URL: https://build.opensuse.org/package/show/devel:tools/doctest?expand=0&rev=13
77 lines
2.0 KiB
RPMSpec
77 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package doctest
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: doctest
|
|
Version: 2.4.6
|
|
Release: 0
|
|
Summary: Single-header testing framework
|
|
License: MIT
|
|
URL: http://bit.ly/doctest-docs
|
|
Source0: https://github.com/onqtam/doctest/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
# PATCH-FIX-UPSTREAM
|
|
Patch0: 0001-Fix-build-with-GCC-11.patch
|
|
BuildRequires: cmake
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: pkgconfig
|
|
|
|
%description
|
|
C++98/C++11 single-header testing framework for unit tests and TDD.
|
|
|
|
%package devel
|
|
Summary: Single-header testing framework
|
|
|
|
%description devel
|
|
C++98/C++11 single-header testing framework for unit tests and TDD.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
# fix cmake module path
|
|
sed -i 's|lib/cmake|%{_lib}/cmake|g' CMakeLists.txt
|
|
|
|
%cmake
|
|
%cmake_build
|
|
|
|
%install
|
|
%cmake_install
|
|
|
|
# creates support file for pkg-config
|
|
mkdir -p %{buildroot}/%{_libdir}/pkgconfig
|
|
tee %{buildroot}/%{_libdir}/pkgconfig/doctest.pc << "EOF"
|
|
prefix=%{_prefix}
|
|
exec_prefix=${prefix}
|
|
libdir=${exec_prefix}/%{_lib}
|
|
includedir=${prefix}/include
|
|
|
|
Name: doctest
|
|
Description: Single-header testing framework
|
|
Version: %{version}
|
|
Libs:
|
|
Cflags: -I${includedir}/doctest
|
|
EOF
|
|
|
|
%files devel
|
|
%doc CHANGELOG.md README.md
|
|
%license LICENSE.txt
|
|
%{_includedir}/doctest
|
|
%{_libdir}/cmake/doctest
|
|
%{_libdir}/pkgconfig/doctest.pc
|
|
|
|
%changelog
|