]> git.pld-linux.org Git - packages/cscope.git/blob - cscope.spec
- use http for sources from sourceforge
[packages/cscope.git] / cscope.spec
1 Summary:        cscope - an interactive, screen-oriented tool for browse C source
2 Summary(pl):    cscope - interaktywny program do przeszukiwania kodu w jêzyku C
3 Name:           cscope
4 Version:        15.4
5 Release:        1
6 License:        BSD
7 Group:          Development/Tools
8 Source0:        http://dl.sourceforge.net/cscope/%{name}-%{version}.tar.gz
9 URL:            http://cscope.sourceforge.net/
10 BuildRequires:  autoconf
11 BuildRequires:  automake
12 BuildRequires:  flex
13 BuildRequires:  ncurses-devel
14 Buildroot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 cscope is an interactive, screen-oriented tool that allows the user to
18 browse through C source files for specified elements of code.
19
20 %description -l pl
21 cscope jest interaktywnym, pe³noekranowym narzêdziem, które pozwala
22 u¿ytkownikowi na przeszukiwanie plików z kodem w jêzyku C pod wzglêdem
23 okre¶lonych elementów.
24
25 %prep
26 %setup -q
27
28 %build
29 rm -f missing
30 %{__aclocal}
31 %{__autoconf}
32 %{__automake}
33 %configure
34 %{__make}
35
36 %install
37 rm -rf $RPM_BUILD_ROOT
38
39 %{__make} install \
40         DESTDIR=$RPM_BUILD_ROOT
41
42 %clean
43 rm -rf $RPM_BUILD_ROOT
44
45 %files
46 %defattr(644,root,root,755)
47 %doc TODO ChangeLog AUTHORS README NEWS
48 %attr(755,root,root) %{_bindir}/*
49 %{_mandir}/man1/*
This page took 1.012925 seconds and 4 git commands to generate.