]> git.pld-linux.org Git - packages/cscope.git/blob - cscope.spec
- updated to 15.3,
[packages/cscope.git] / cscope.spec
1 Summary:        cscope - an interactive, screen-oriented tool for browse C source
2 Name:           cscope
3 Version:        15.3
4 Release:        1
5 License:        BSD
6 Group:          Development/Tools
7 Group(de):      Entwicklung/Werkzeuge
8 Group(fr):      Development/Outils
9 Group(pl):      Programowanie/Narzêdzia
10 Source0:        ftp://download.sourceforge.net/pub/sourceforge/cscope/%{name}-%{version}.tar.gz
11 URL:            http://cscope.sourceforge.net/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  flex
15 BuildRequires:  ncurses-devel
16 Buildroot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 cscope is an interactive, screen-oriented tool that allows the user to
20 browse through C source files for specified elements of code.
21
22 %prep
23 %setup -q
24
25 %build
26 aclocal
27 autoconf
28 automake -a -c
29 %configure
30 %{__make}
31
32 %install
33 rm -rf $RPM_BUILD_ROOT
34
35 %{__make} install \
36         DESTDIR=$RPM_BUILD_ROOT
37
38 gzip -9nf TODO ChangeLog AUTHORS README NEWS
39
40 %clean
41 rm -rf $RPM_BUILD_ROOT
42
43 %files
44 %defattr(644,root,root,755)
45 %doc *.gz
46 %attr(755,root,root) %{_bindir}/*
47 %{_mandir}/man1/*
This page took 0.417373 seconds and 4 git commands to generate.