]> git.pld-linux.org Git - packages/cgdb.git/blob - cgdb.spec
- updated to 0.4.0
[packages/cgdb.git] / cgdb.spec
1 Summary:        A lightweight, but fully functional curses frontend to gdb
2 Summary(pl):    Lekki, ale w pe³ni funkcjonalny frontend do gdb oparty na ncurses
3 Name:           cgdb
4 Version:        0.4.0
5 Release:        1
6 License:        GPL
7 Group:          Development/Debuggers
8 Source0:        http://dl.sourceforge.net/cgdb/%{name}-%{version}.tar.gz
9 # Source0-md5:  1c1fcf3100ab47abb2f6f925c9803753
10 URL:            http://cgdb.sourceforge.net/
11 BuildRequires:  readline-devel
12 Requires:       gdb
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 CGDB is a curses-based interface to the GNU Debugger (GDB). The goal
17 of CGDB is to be lightweight and responsive; not encumbered with
18 unnecessary features. The interface is designed to deliver the
19 familiar GDB text interface, with a split screen showing the source as
20 it executes. The UI is modeled on the classic Unix text editor, vi.
21 Those familiar with vi should feel right at home using CGDB.
22
23 %description -l pl
24 CGDB to oparty na curses interfejs do GNU Debuggera (GDB). Celem CGDB
25 jest bycie lekkim i reaktywnym, nie obci±¿onym niepotrzebnymi
26 mo¿liwo¶ciami. Interfejs zosta³ tak zaprojektowany, by dostarczyæ
27 znajomy interfejs tekstowy GDB z podzielonym ekranem pokazuj±cym
28 ¼ród³a wykonywanego kodu. Interfejs u¿ytkownika jest modelowany na
29 klasyczny uniksowy edytor tekstu - vi. Znaj±cy vi u¿ywaj±c CGDB
30 powinni czuæ siê jak w domu.
31
32 %prep
33 %setup -q
34
35 %build
36 CPPFLAGS="-I/usr/include/ncurses"
37 %configure
38
39 %{__make}
40
41 %install
42 rm -rf $RPM_BUILD_ROOT
43
44 # pass noinst_bindir inside buildroot - don't mess in $TMPDIR/../../..
45 %{__make} install \
46         DESTDIR=$RPM_BUILD_ROOT \
47         noinst_bindir=/progs
48
49 %clean
50 rm -rf $RPM_BUILD_ROOT
51
52 %files
53 %defattr(644,root,root,755)
54 %doc AUTHORS ChangeLog NEWS README
55 %attr(755,root,root) %{_bindir}/*
This page took 0.035512 seconds and 3 git commands to generate.