-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcodeblocks-debugger-gdbmi.spec.in
More file actions
50 lines (33 loc) · 1010 Bytes
/
codeblocks-debugger-gdbmi.spec.in
File metadata and controls
50 lines (33 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Name: codeblocks-debugger-gdbmi
Version: 0.1
Release: 1%{?dist}
Summary: Debugger plugin for Code::Blocks using the GDB/MI interface
Group: Development/Tools/IDE
License: GPL3
URL: www.none.com
Source0: www.none.com/codeblocks-debugger-gdbmi-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: codeblocks-devel
Requires: codeblocks
%description
Allows you to debug using the GDB/MI interface, which is faster and more robust than the CLI interface.
%define pkgdata %{_datadir}/codeblocks/
%define pkglib %{_libdir}/codeblocks/plugins/
%prep
%setup -q
%build
%configure
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{pkglib}/libdebugger_gdbmi.a
%{pkglib}/libdebugger_gdbmi.la
%{pkglib}/libdebugger_gdbmi.so
%{pkgdata}/debugger_gdbmi.zip
%doc
%changelog