summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwitekfl2006-08-13 13:21:51 (GMT)
committercvs2git2012-06-24 12:13:13 (GMT)
commitccfe504e3bf94332dd562eb858d4aca37a643189 (patch)
tree84c17eec8247d4613a044cebfdfe2a4c8e6a1bcc
downloadlibmigdb-ccfe504e3bf94332dd562eb858d4aca37a643189.zip
libmigdb-ccfe504e3bf94332dd562eb858d4aca37a643189.tar.gz
- new
Changed files: libmigdb.spec -> 1.1
-rw-r--r--libmigdb.spec48
1 files changed, 48 insertions, 0 deletions
diff --git a/libmigdb.spec b/libmigdb.spec
new file mode 100644
index 0000000..acf1952
--- /dev/null
+++ b/libmigdb.spec
@@ -0,0 +1,48 @@
+Summary: Library handling GDB/MI interface
+Summary(pl): Biblioteka obsługuj±ca interfejs GDB/MI
+Name: libmigdb
+Version: 0.8.10
+Release: 1
+License: GPL v2
+Group: Development/Libraries
+Source0: http://dl.sourceforge.net/libmigdb/%{name}-%{version}.tar.bz2
+# Source0-md5: 4929260320253489a958bc95eb388c11
+URL: http://sourceforge.net/projects/libmigdb/
+BuildRequires: libstdc++-devel
+Requires: gdb
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This library is an attempt to support the GDB/MI interface. MI stands for
+machine interface. In this mode gdb sends responses that are "machine
+readable" instead of "human readable"
+
+%description -l pl
+Ta biblioteka jest prób± obsługi interfejsu GDB/MI. MI oznacza interfejs
+maszyny. W tym trybie gdb wysyła odpowiedzi, które s± "zrozumiałe dla
+maszyny" a nie s± "zrozumiałe dla człowieka".
+
+%prep
+%setup -q -n %{name}
+
+%build
+%{__make} CC="%{__cc}" \
+ CXX="%{__cxx}" \
+ CFLAGS="%{rpmcflags}" \
+ CXXFLAGS="%{rpmcflags}"
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{%{_includedir},%{_libdir}}
+
+install src/libmigdb.a $RPM_BUILD_ROOT%{_libdir}
+install src/mi_gdb.h $RPM_BUILD_ROOT%{_includedir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc change.log README doc/reference.html
+%{_includedir}/*
+%{_libdir}/*