]> git.pld-linux.org Git - packages/ccache.git/commitdiff
- new PLD spec
authorpioklo <pioklo@linuxpl.com>
Mon, 29 Apr 2002 13:26:28 +0000 (13:26 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- need pl descriptions :)

Changed files:
    ccache.spec -> 1.1

ccache.spec [new file with mode: 0644]

diff --git a/ccache.spec b/ccache.spec
new file mode 100644 (file)
index 0000000..55ec24a
--- /dev/null
@@ -0,0 +1,43 @@
+Name:          ccache
+Summary:       compiler cache
+Summary(pl):   przyspieszacz kompilowania 
+Url:           http://ccache.samba.org/
+Version:       1.8
+Release:       1
+License:       GPL
+Group:         Development/Tools
+Source0:       http://ccache.samba.org/ftp/ccache/%{name}-%{version}.tar.gz
+BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+%description
+ccache is a compiler cache. It acts as a caching pre-processor to
+C/C++ compilers, using the -E compiler switch and a hash to detect
+when a compilation can be satisfied from cache. This often results in
+a 5 to 10 times speedup in common compilations.
+
+%description -l pl 
+
+%prep
+%setup -q -n ccache-1.8
+
+%build
+%configure
+
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+install -d  $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
+install   ccache $RPM_BUILD_ROOT%{_bindir}
+install   ccache.1 $RPM_BUILD_ROOT%{_mandir}/man1
+
+gzip -9nf README
+
+%clean
+rm -fr $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/ccache
+%{_mandir}/man1/ccache*
+%doc *.gz
This page took 0.048965 seconds and 4 git commands to generate.