source: projects/specs/branches/6/c/ccache/ccache-vl.spec @ 8147

Revision 8147, 1.4 KB checked in by shaolin, 10 years ago (diff)
  • ccache
    • rebuild/new upstream release
Line 
1Name: ccache
2Version: 3.1.9
3Release: 1%{?_dist_release}
4Vendor: Project Vine
5Distribution: Vine Linux
6License: GPL
7Group: Development/Tools
8URL: http://ccache.samba.org/
9Source0: http://samba.org/ftp/ccache/%{name}-%{version}.tar.bz2
10BuildRoot: %{_tmppath}/%{name}-%{version}-root
11Summary: a fast compiler cache
12
13# From upstream post 3.1.9
14Patch0: ccache-3.1.9-gcc48-tests.patch
15
16BuildRequires: perl(File::Spec)
17BuildRequires: zlib-devel >= 1.2.3
18
19%description
20ccache is a compiler cache. It acts as a caching pre-processor to C/C++
21compilers, using the -E compiler switch and a hash to detect when a compilation
22can be satisfied from cache. This often results in a 5 to 10 times speedup in
23common compilations.
24
25%prep
26%setup -q
27%patch0 -p1
28
29%build
30%configure
31%__make
32
33%install
34%__rm -rf %{buildroot}
35%makeinstall
36
37%check
38%__make check
39
40%clean
41%__rm -rf %{buildroot}
42
43%files
44%defattr(-,root,root)
45%doc AUTHORS.* GPL-3.0.txt LICENSE.* MANUAL.* NEWS.* README.*
46%{_bindir}/*
47%{_mandir}/man?/*
48
49%changelog
50* Fri Jan 10 2014 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.1.9-1
51- new upstream release
52- import Patch0 from Fedora
53
54* Thu Jun  9 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.1.5-1
55- new upstream release
56
57* Sat Sep 20 2008 Shu KONNO <owa@bg.wakwak.com>
58- applied new versioning policy
59
60* Tue Feb 17 2004 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 2.4-0vl1
61- Import from Vine 2.6 (But, original spec file has no changelog)
62- New upstream version
63
Note: See TracBrowser for help on using the repository browser.