]> git.pld-linux.org Git - packages/cscope.git/blob - cscope.spec
d867bb89b8978cb15b3cb92edcb854119db8f2b4
[packages/cscope.git] / cscope.spec
1 Summary: cscope is an interactive, screen-oriented tool that allows the user to browse through C source files for specified elements of code.
2 Name: cscope
3 Version: 15.1
4 Release: 1
5 Copyright: BSD
6 Group: Development/Tools
7 Source: cscope-15.1.tar.gz
8 Buildroot: /tmp/%{name}-%{version}
9
10 %description
11 cscope is an interactive, screen-oriented tool that allows the user to browse through C source files for specified elements of code.
12
13 %prep
14 %setup
15
16 %build
17 ./configure
18 make
19
20 %install
21 rm -rf $RPM_BUILD_ROOT
22 mkdir -p $RPM_BUILD_ROOT/usr/bin
23 mkdir -p $RPM_BUILD_ROOT/usr/man/man1
24
25 install -s -m 755 src/cscope $RPM_BUILD_ROOT/usr/bin/cscope
26 install -m 755 doc/cscope.1 $RPM_BUILD_ROOT/usr/man/man1/cscope.1
27
28 %clean
29 rm -rf $RPM_BUILD_ROOT
30
31 %files
32 %defattr(-,root,root)
33 %doc TODO COPYING ChangeLog AUTHORS README NEWS INSTALL
34
35 /usr/bin/cscope
36 /usr/man/man1/cscope.1
37
38 %changelog
39 * Wed Nov 20 2000 Cscope development team
40 - Version 15.1 release
41 - New menu and line matching interface
42 - Support for up to 62 (up from 9) matching lines on screen
43 - Numerous fixes
44 - Updated documentation
45 * Tue May 15 2000 Cscope development team
46 - Version 15.0bl2 (build 2) pre-alpha release
47 - Fixes and enhancements
48 - Updated documentation
49 - Autoconf/automake support
50 - directory restructuring
51 * Sun Apr 16 2000 Petr Sorfa <petrs@sco.com>
52 - Initial Open Source release
53 - Ported to GNU environment
54 - Created rpm package
This page took 0.035985 seconds and 2 git commands to generate.