]> git.pld-linux.org Git - packages/ccache.git/blame - ccache.spec
- new PLD spec
[packages/ccache.git] / ccache.spec
CommitLineData
8b92ebec 1Name: ccache
2Summary: compiler cache
3Summary(pl): przyspieszacz kompilowania
4Url: http://ccache.samba.org/
5Version: 1.8
6Release: 1
7License: GPL
8Group: Development/Tools
9Source0: http://ccache.samba.org/ftp/ccache/%{name}-%{version}.tar.gz
10BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11%description
12ccache is a compiler cache. It acts as a caching pre-processor to
13C/C++ compilers, using the -E compiler switch and a hash to detect
14when a compilation can be satisfied from cache. This often results in
15a 5 to 10 times speedup in common compilations.
16
17%description -l pl
18
19%prep
20%setup -q -n ccache-1.8
21
22%build
23%configure
24
25%{__make}
26
27%install
28rm -rf $RPM_BUILD_ROOT
29
30install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
31install ccache $RPM_BUILD_ROOT%{_bindir}
32install ccache.1 $RPM_BUILD_ROOT%{_mandir}/man1
33
34gzip -9nf README
35
36%clean
37rm -fr $RPM_BUILD_ROOT
38
39%files
40%defattr(644,root,root,755)
41%attr(755,root,root) %{_bindir}/ccache
42%{_mandir}/man1/ccache*
43%doc *.gz
This page took 0.027384 seconds and 4 git commands to generate.