2007-01-15 23:06:38 +00:00
|
|
|
#
|
2011-02-27 12:40:18 +00:00
|
|
|
# spec file for package ccache
|
2007-01-15 23:06:38 +00:00
|
|
|
#
|
2022-04-04 07:30:19 +00:00
|
|
|
# Copyright (c) 2022 SUSE LLC
|
2007-01-15 23:06:38 +00:00
|
|
|
#
|
2009-06-17 17:17:34 +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.
|
|
|
|
|
2019-05-02 08:37:18 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2007-01-15 23:06:38 +00:00
|
|
|
#
|
|
|
|
|
2012-08-11 15:25:03 +00:00
|
|
|
|
2009-06-17 17:17:34 +00:00
|
|
|
Name: ccache
|
2022-06-05 00:02:10 +00:00
|
|
|
Version: 4.6.1
|
2012-01-09 07:32:42 +00:00
|
|
|
Release: 0
|
2011-02-24 19:41:55 +00:00
|
|
|
Summary: A Fast C/C++ Compiler Cache
|
2018-03-15 11:16:17 +00:00
|
|
|
License: GPL-3.0-or-later
|
2019-05-02 08:04:49 +00:00
|
|
|
URL: https://ccache.dev/
|
2021-05-12 21:44:55 +00:00
|
|
|
Source0: https://github.com/ccache/ccache/releases/download/v%{version}/ccache-%{version}.tar.xz
|
|
|
|
Source1: https://github.com/ccache/ccache/releases/download/v%{version}/ccache-%{version}.tar.xz.asc
|
2015-02-26 10:54:03 +00:00
|
|
|
Source2: %{name}.keyring
|
2022-08-30 09:33:08 +00:00
|
|
|
%ifnarch %ix86 %arm
|
|
|
|
Patch0: fix2038.patch
|
|
|
|
%endif
|
2020-11-04 08:12:50 +00:00
|
|
|
BuildRequires: cmake
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
BuildRequires: libzstd-devel >= 1.1.2
|
2021-08-25 13:28:16 +00:00
|
|
|
BuildRequires: rubygem(asciidoctor)
|
2016-07-08 18:09:42 +00:00
|
|
|
Provides: distcc:%{_bindir}/ccache
|
2011-02-24 19:41:55 +00:00
|
|
|
|
2007-01-15 23:06:38 +00:00
|
|
|
%description
|
2016-09-11 08:01:53 +00:00
|
|
|
ccache is a compiler cache. It speeds up recompilation by caching the
|
|
|
|
result of previous compilations and detecting when the same compilation is
|
|
|
|
being done again. Supported languages are C, C++, Objective-C and
|
|
|
|
Objective-C++.
|
2007-01-15 23:06:38 +00:00
|
|
|
|
|
|
|
%prep
|
2021-12-20 11:26:22 +00:00
|
|
|
%autosetup -p1
|
2007-01-15 23:06:38 +00:00
|
|
|
|
|
|
|
%build
|
2021-08-25 13:09:08 +00:00
|
|
|
%cmake \
|
|
|
|
-DREDIS_STORAGE_BACKEND=OFF
|
2020-11-04 08:12:50 +00:00
|
|
|
%cmake_build
|
|
|
|
%make_build doc
|
2007-01-15 23:06:38 +00:00
|
|
|
|
|
|
|
%install
|
2020-11-04 08:12:50 +00:00
|
|
|
%cmake_install
|
|
|
|
|
2015-05-26 08:09:52 +00:00
|
|
|
# create the compat symlinks into /usr/libdir/ccache
|
|
|
|
mkdir -p %{buildroot}/%{_libdir}/%{name}
|
|
|
|
cd %{buildroot}/%{_libdir}/%{name}
|
|
|
|
ln -sf ../../bin/%{name} gcc
|
|
|
|
ln -sf ../../bin/%{name} g++
|
2016-09-11 08:01:53 +00:00
|
|
|
ln -sf ../../bin/%{name} gcc-objc
|
2016-09-11 07:53:03 +00:00
|
|
|
ln -sf ../../bin/%{name} gfortran
|
2016-08-26 14:23:03 +00:00
|
|
|
# do the same for clang
|
|
|
|
ln -sf ../../bin/%{name} clang
|
|
|
|
ln -sf ../../bin/%{name} clang++
|
|
|
|
# and regular cc
|
|
|
|
ln -sf ../../bin/%{name} cc
|
|
|
|
ln -sf ../../bin/%{name} c++
|
2020-06-07 10:07:29 +00:00
|
|
|
# and for nvidia cuda
|
|
|
|
ln -sf ../../bin/%{name} nvcc
|
2015-05-26 08:09:52 +00:00
|
|
|
|
2021-04-06 08:38:46 +00:00
|
|
|
%check
|
2021-12-02 13:17:49 +00:00
|
|
|
%ctest
|
2018-07-11 08:41:55 +00:00
|
|
|
|
2007-01-15 23:06:38 +00:00
|
|
|
%files
|
2018-03-15 11:16:17 +00:00
|
|
|
%license LICENSE.* GPL-3.0.txt
|
2018-04-17 13:49:43 +00:00
|
|
|
%doc doc/AUTHORS.* doc/MANUAL.* doc/NEWS.* README.*
|
2015-02-26 10:54:03 +00:00
|
|
|
%{_bindir}/%{name}
|
2015-05-26 08:09:52 +00:00
|
|
|
%{_libdir}/%{name}
|
2018-03-15 11:16:17 +00:00
|
|
|
%{_mandir}/man1/%{name}.1%{?ext_man}
|
2007-01-15 23:06:38 +00:00
|
|
|
|
2009-06-17 17:17:34 +00:00
|
|
|
%changelog
|