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