googletest/googletest.spec

89 lines
2.7 KiB
RPMSpec
Raw Normal View History

#
# spec file for package googletest
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
Name: googletest
Version: 1.7.0
Release: 0
Summary: Google C++ Testing Framework
License: BSD-3-Clause
Group: Development/Libraries/C and C++
Url: http://code.google.com/p/googletest/
Source0: gtest-%{version}.zip
#PATCH-FIX-UPSTREAM marguerite@opensuse.org Google thinks `make install`
#is dangerous, but I don't think so.
Patch: googletest-enable-make-install.patch
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: libtool
BuildRequires: python
BuildRequires: unzip
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Google\'s framework for writing C++ tests on a variety of platforms
(Linux, Mac OS X, Windows, Cygwin, Windows CE, and Symbian).
Based on the xUnit architecture. Supports automatic test discovery,
a rich set of assertions, user-defined assertions, death tests,
fatal and non-fatal failures, value- and type-parameterized tests,
various options for running the tests, and XML test report generation.
%package devel
Summary: Development files for googletest
Group: Development/Libraries/C and C++
Requires: %{name} = %{version}
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use googletest.
%prep
%setup -q -n gtest-%{version}
%patch -p1
autoreconf -fi
%build
%configure --disable-static
make %{?_smp_mflags}
%install
%makeinstall
mkdir -p %{buildroot}%{_bindir}
install -m 755 scripts/gtest-config %{buildroot}%{_bindir}
find %{buildroot}%{_libdir} -name "*.la" -type f -delete -print
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-, root, root)
%doc README LICENSE CONTRIBUTORS CHANGES
%{_libdir}/libgtest.so.0
%{_libdir}/libgtest.so.0.0.0
%{_libdir}/libgtest_main.so.0
%{_libdir}/libgtest_main.so.0.0.0
%files devel
%defattr(-, root, root)
%{_bindir}/gtest-config
%{_includedir}/gtest
%{_libdir}/libgtest.so
%{_libdir}/libgtest_main.so
%{_datadir}/aclocal/gtest.m4
%changelog