2007-01-16 00:06:38 +01:00
|
|
|
#
|
2011-02-27 13:40:18 +01:00
|
|
|
# spec file for package ccache
|
2007-01-16 00:06:38 +01:00
|
|
|
#
|
2019-01-31 14:51:35 +01:00
|
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
2007-01-16 00:06:38 +01:00
|
|
|
#
|
2009-06-17 19:17:34 +02: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-01-31 14:51:35 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
2007-01-16 00:06:38 +01:00
|
|
|
#
|
|
|
|
|
2012-08-11 17:25:03 +02:00
|
|
|
|
2009-06-17 19:17:34 +02:00
|
|
|
Name: ccache
|
2019-01-31 14:51:35 +01:00
|
|
|
Version: 3.6
|
2012-01-09 08:32:42 +01:00
|
|
|
Release: 0
|
2011-02-24 20:41:55 +01:00
|
|
|
Summary: A Fast C/C++ Compiler Cache
|
2018-03-15 12:16:17 +01:00
|
|
|
License: GPL-3.0-or-later
|
2012-01-09 08:32:42 +01:00
|
|
|
Group: Development/Languages/C and C++
|
2018-07-11 10:41:55 +02:00
|
|
|
URL: https://ccache.samba.org/
|
2018-02-05 10:38:39 +01:00
|
|
|
Source0: https://www.samba.org/ftp/%{name}/%{name}-%{version}.tar.xz
|
|
|
|
Source1: https://www.samba.org/ftp/%{name}/%{name}-%{version}.tar.xz.asc
|
2015-02-26 11:54:03 +01:00
|
|
|
Source2: %{name}.keyring
|
2011-02-24 20:41:55 +01:00
|
|
|
BuildRequires: zlib-devel
|
2016-07-08 20:09:42 +02:00
|
|
|
Provides: distcc:%{_bindir}/ccache
|
2011-02-24 20:41:55 +01:00
|
|
|
|
2007-01-16 00:06:38 +01:00
|
|
|
%description
|
2016-09-11 10:01:53 +02: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-16 00:06:38 +01:00
|
|
|
|
|
|
|
%prep
|
2018-10-22 08:59:31 +02:00
|
|
|
%setup -q
|
2007-01-16 00:06:38 +01:00
|
|
|
|
|
|
|
%build
|
2018-10-22 08:59:31 +02:00
|
|
|
%configure \
|
|
|
|
--without-bundled-zlib
|
|
|
|
make %{?_smp_mflags} V=1
|
2007-01-16 00:06:38 +01:00
|
|
|
|
|
|
|
%install
|
2016-07-08 20:09:42 +02:00
|
|
|
%make_install
|
2011-02-24 20:41:55 +01:00
|
|
|
|
2015-05-26 10:09:52 +02: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 10:01:53 +02:00
|
|
|
ln -sf ../../bin/%{name} gcc-objc
|
2016-09-11 09:53:03 +02:00
|
|
|
ln -sf ../../bin/%{name} gfortran
|
2016-08-26 16:23:03 +02: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++
|
2015-05-26 10:09:52 +02:00
|
|
|
|
2018-07-13 09:42:15 +02:00
|
|
|
%ifnarch %ix86
|
|
|
|
# Testsuite fails on i586
|
2018-07-11 10:41:55 +02:00
|
|
|
%check
|
|
|
|
make %{?_smp_mflags} check
|
2018-07-13 09:42:15 +02:00
|
|
|
%endif
|
2018-07-11 10:41:55 +02:00
|
|
|
|
2007-01-16 00:06:38 +01:00
|
|
|
%files
|
2018-03-15 12:16:17 +01:00
|
|
|
%license LICENSE.* GPL-3.0.txt
|
2018-04-17 15:49:43 +02:00
|
|
|
%doc doc/AUTHORS.* doc/MANUAL.* doc/NEWS.* README.*
|
2015-02-26 11:54:03 +01:00
|
|
|
%{_bindir}/%{name}
|
2015-05-26 10:09:52 +02:00
|
|
|
%{_libdir}/%{name}
|
2018-03-15 12:16:17 +01:00
|
|
|
%{_mandir}/man1/%{name}.1%{?ext_man}
|
2007-01-16 00:06:38 +01:00
|
|
|
|
2009-06-17 19:17:34 +02:00
|
|
|
%changelog
|