| OLD | NEW |
| 1 %define RELEASE 1 | 1 %define RELEASE 1 |
| 2 %define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE} | 2 %define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE} |
| 3 %define prefix /usr | 3 %define prefix /usr |
| 4 | 4 |
| 5 Name: %NAME | 5 Name: %NAME |
| 6 Summary: Performance tools for C++ | 6 Summary: Performance tools for C++ |
| 7 Version: %VERSION | 7 Version: %VERSION |
| 8 Release: %rel | 8 Release: %rel |
| 9 Group: Development/Libraries | 9 Group: Development/Libraries |
| 10 URL: http://code.google.com/p/google-perftools/ | 10 URL: http://code.google.com/p/gperftools/ |
| 11 License: BSD | 11 License: BSD |
| 12 Vendor: Google | 12 Vendor: Google Inc. and others |
| 13 Packager: Google <google-perftools@googlegroups.com> | 13 Packager: Google Inc. and others <google-perftools@googlegroups.com> |
| 14 Source: http://%{NAME}.googlecode.com/files/%{NAME}-%{VERSION}.tar.gz | 14 Source: http://%{NAME}.googlecode.com/files/%{NAME}-%{VERSION}.tar.gz |
| 15 Distribution: Redhat 7 and above. | 15 Distribution: Redhat 7 and above. |
| 16 Buildroot: %{_tmppath}/%{name}-root | 16 Buildroot: %{_tmppath}/%{name}-root |
| 17 Prefix: %prefix | 17 Prefix: %prefix |
| 18 | 18 |
| 19 %description | 19 %description |
| 20 The %name packages contains some utilities to improve and analyze the | 20 The %name packages contains some utilities to improve and analyze the |
| 21 performance of C++ programs. This includes an optimized thread-caching | 21 performance of C++ programs. This includes an optimized thread-caching |
| 22 malloc() and cpu and heap profiling utilities. | 22 malloc() and cpu and heap profiling utilities. |
| 23 | 23 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 %{prefix}/share/doc/%{NAME}-%{VERSION}/* | 63 %{prefix}/share/doc/%{NAME}-%{VERSION}/* |
| 64 | 64 |
| 65 %{_libdir}/*.so.* | 65 %{_libdir}/*.so.* |
| 66 %{_bindir}/pprof | 66 %{_bindir}/pprof |
| 67 %{_mandir}/man1/pprof.1* | 67 %{_mandir}/man1/pprof.1* |
| 68 | 68 |
| 69 %files devel | 69 %files devel |
| 70 %defattr(-,root,root) | 70 %defattr(-,root,root) |
| 71 | 71 |
| 72 %{_includedir}/google | 72 %{_includedir}/google |
| 73 %{_includedir}/gperftools |
| 73 %{_libdir}/*.a | 74 %{_libdir}/*.a |
| 74 %{_libdir}/*.la | 75 %{_libdir}/*.la |
| 75 %{_libdir}/*.so | 76 %{_libdir}/*.so |
| 76 %{_libdir}/pkgconfig/*.pc | 77 %{_libdir}/pkgconfig/*.pc |
| OLD | NEW |