2018-12-18 14:56:04 +01:00
|
|
|
#
|
|
|
|
# spec file for package abseil-cpp
|
|
|
|
#
|
2020-01-17 16:07:24 +01:00
|
|
|
# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
|
2018-12-18 14:56:04 +01: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.
|
|
|
|
|
2019-07-24 20:50:35 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2018-12-18 14:56:04 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
|
2019-11-11 21:18:34 +01:00
|
|
|
%define src_install_dir /usr/src/%{name}
|
2019-01-21 11:00:00 +01:00
|
|
|
|
2018-12-18 14:56:04 +01:00
|
|
|
Name: abseil-cpp
|
2019-12-21 12:30:18 +01:00
|
|
|
Version: 20190808
|
2018-12-18 14:56:04 +01:00
|
|
|
Release: 0
|
|
|
|
Summary: C++11 libraries which augment the C++ stdlib
|
|
|
|
License: Apache-2.0
|
2020-01-14 21:09:32 +01:00
|
|
|
URL: https://abseil.io/
|
2019-12-21 12:30:18 +01:00
|
|
|
Source0: %{name}-%{version}.tar.gz
|
2019-11-11 21:18:34 +01:00
|
|
|
Source1: %{name}-rpmlintrc
|
|
|
|
BuildRequires: fdupes
|
2020-01-14 21:09:32 +01:00
|
|
|
ExcludeArch: %ix86
|
2018-12-18 14:56:04 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
Abseil is a collection of C++11 libraries which augment the C++
|
|
|
|
standard library. It also provides features incorporated into C++14
|
|
|
|
and C++17 standards.
|
|
|
|
|
2019-11-11 21:18:34 +01:00
|
|
|
%package source
|
|
|
|
Summary: Source code of Abseil
|
|
|
|
|
|
|
|
%description source
|
|
|
|
Source code of Abseil, a collection of C++11 libraries
|
|
|
|
which augment the C++ standard library. It also provides
|
|
|
|
features incorporated into C++14 and C++17 standards.
|
|
|
|
|
2018-12-18 14:56:04 +01:00
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%install
|
2019-11-11 21:18:34 +01:00
|
|
|
mkdir -p %{buildroot}%{src_install_dir}
|
2020-01-17 16:07:24 +01:00
|
|
|
cp -r * %{buildroot}%{src_install_dir}
|
2019-11-11 21:18:34 +01:00
|
|
|
%fdupes %{buildroot}%{src_install_dir}
|
|
|
|
|
2020-01-17 16:07:24 +01:00
|
|
|
%files source
|
2018-12-18 14:56:04 +01:00
|
|
|
%license LICENSE
|
|
|
|
%doc README.md
|
2019-11-11 21:18:34 +01:00
|
|
|
%{src_install_dir}
|
2018-12-18 14:56:04 +01:00
|
|
|
|
|
|
|
%changelog
|