SHA256
1
0
forked from pool/doctest
doctest/doctest.spec
Luigi Baldoni d4a87b34b9 Accepting request 880539 from home:mnhauke
- Update to version 2.4.6
  Fixed bugs:
  * REQUIRE does not compile when operator== in different
    namespace #443
  * Using templated operator== inside TEST_CASE changes deduced
    types of forwarding references #399
  Closed issues:
  * CMake doesn't link package #483
  * Get list of registered test-case names #479
  * Can't compile with glibc master (future 2.34): SIGSTKSZ is
    no longer a constant #473
  * INFO does not compile when used like a function call #469

OBS-URL: https://build.opensuse.org/request/show/880539
OBS-URL: https://build.opensuse.org/package/show/devel:tools/doctest?expand=0&rev=11
2021-03-22 19:38:28 +00:00

74 lines
1.9 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
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
# fix cmake module path
sed -i 's|lib/cmake|%{_lib}/cmake|g' CMakeLists.txt
%build
%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