cscope-vl.spec 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. Summary: C source code tree search and browse tool
  2. Name: cscope
  3. Version: 15.8a
  4. Release: 1%{?_dist_release}
  5. License: BSD
  6. Group: Development/Tools
  7. URL: http://cscope.sourceforge.net/
  8. Source0: cscope-%{version}.tar.gz
  9. Buildroot: %{_tmppath}/%{name}-%{version}-root
  10. BuildRequires: ncurses-devel
  11. BuildRequires: bison
  12. BuildRequires: flex
  13. %description
  14. cscope is a mature, ncurses based, C source code tree browsing tool. It
  15. allows users to search large source code bases for variables, functions,
  16. macros, etc, as well as perform general regex and plain text searches.
  17. Results are returned in lists, from which the user can select individual
  18. matches for use in file editing.
  19. %prep
  20. %setup -q
  21. %build
  22. %configure
  23. make
  24. %install
  25. rm -rf $RPM_BUILD_ROOT
  26. mkdir -p $RPM_BUILD_ROOT/%{_bindir}
  27. mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1
  28. install -s -m 755 src/cscope $RPM_BUILD_ROOT/%{_bindir}/cscope
  29. install -m 755 doc/cscope.1 $RPM_BUILD_ROOT/%{_mandir}/man1/cscope.1
  30. %clean
  31. rm -rf $RPM_BUILD_ROOT
  32. %files
  33. %defattr(-,root,root)
  34. %doc TODO COPYING ChangeLog AUTHORS README NEWS
  35. %{_bindir}/cscope
  36. %{_mandir}/man1/cscope.1*
  37. %changelog
  38. * Sat Feb 28 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 15.8a-1
  39. - update to 15.8a
  40. * Sat Jun 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp>
  41. - new upstream release
  42. - add BuildRequires: bison, flex
  43. * Mon Aug 20 2001 Yoichi Imai <yoichi@silver-forest.com>
  44. - applied new versioning policy
  45. - s/Copyright/License/
  46. * Mon Aug 20 2001 Yoichi Imai <yoichi@silver-forest.com>
  47. - use macros for path
  48. - rebuilded for Vine Linux
  49. * Mon Jul 2 2001 Cscope development team
  50. - Version 15.3 release
  51. - New flex scanner
  52. - XEmacs support improvements
  53. - Vim support improvements
  54. - 64 bit fixes
  55. - MSDOS support
  56. - More editing keys
  57. - Webcscope added to contrib
  58. * Wed Nov 20 2000 Cscope development team
  59. - Version 15.1 release
  60. - New menu and line matching interface
  61. - Support for up to 62 (up from 9) matching lines on screen
  62. - Numerous fixes
  63. - Updated documentation
  64. * Tue May 15 2000 Cscope development team
  65. - Version 15.0bl2 (build 2) pre-alpha release
  66. - Fixes and enhancements
  67. - Updated documentation
  68. - Autoconf/automake support
  69. - directory restructuring
  70. * Sun Apr 16 2000 Petr Sorfa <petrs@sco.com>
  71. - Initial Open Source release
  72. - Ported to GNU environment
  73. - Created rpm package