]> git.pld-linux.org Git - SPECS.git/blob - libmigdb.spec
SPECS updated Wed 28 Jul 14:48:01 CEST 2021
[SPECS.git] / libmigdb.spec
1 Summary:        Library handling GDB/MI interface
2 Summary(pl.UTF-8):      Biblioteka obsługująca interfejs GDB/MI
3 Name:           libmigdb
4 Version:        0.8.12
5 Release:        1
6 License:        GPL v2
7 Group:          Development/Libraries
8 Source0:        http://dl.sourceforge.net/libmigdb/%{name}-%{version}.tar.bz2
9 # Source0-md5:  2dfbc888adef6dff28f52d3c44b86962
10 URL:            http://sourceforge.net/projects/libmigdb/
11 BuildRequires:  libstdc++-devel
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 This library is an attempt to support the GDB/MI interface. MI stands
16 for machine interface. In this mode gdb sends responses that are
17 "machine readable" instead of "human readable".
18
19 %description -l pl.UTF-8
20 Ta biblioteka jest próbą obsługi interfejsu GDB/MI. MI oznacza
21 interfejs maszyny. W tym trybie gdb wysyła odpowiedzi, które są
22 "zrozumiałe dla maszyny" zamiast "zrozumiałych dla człowieka".
23
24 %prep
25 %setup -q -n %{name}
26
27 %build
28 %{__make} \
29         CC="%{__cc}" \
30         CXX="%{__cxx}" \
31         CFLAGS="%{rpmcflags}" \
32         CXXFLAGS="%{rpmcflags}"
33
34 %install
35 rm -rf $RPM_BUILD_ROOT
36 install -d $RPM_BUILD_ROOT{%{_includedir},%{_libdir}}
37
38 install src/libmigdb.a $RPM_BUILD_ROOT%{_libdir}
39 install src/mi_gdb.h $RPM_BUILD_ROOT%{_includedir}
40
41 %clean
42 rm -rf $RPM_BUILD_ROOT
43
44 %files
45 %defattr(644,root,root,755)
46 %doc change.log README doc/reference.html
47 %{_includedir}/*
48 %{_libdir}/*
This page took 1.082791 seconds and 3 git commands to generate.