forked from mono/debugger
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmono-debugger.spec.in
56 lines (47 loc) · 1.45 KB
/
mono-debugger.spec.in
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
51
52
53
54
55
56
Name: mono-debugger
License: GPL v2 or later; LGPL v2.0 or later; X11/MIT
Group: Development/Languages/Mono
Summary: Mono Debugger
Url: http://www.mono-project.com/Debugger
Version: @VERSION@
Release: 0
Source0: %{name}-%{version}.tar.bz2
ExclusiveArch: %ix86 x86_64
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: mono-core >= 2.7
BuildRequires: glib2-devel
BuildRequires: libmono-2_0-devel
BuildRequires: mono-devel
BuildRequires: mono-nunit
BuildRequires: ncurses-devel
%description
A debugger is an important tool for development. The Mono Debugger
(MDB) can debug both managed and unmanaged applications. It provides a
reusable library that can be used to add debugger functionality to
different front-ends. The debugger package includes a console debugger
named "mdb", and MonoDevelop (http://www.monodevelop.com) provides a
GUI interface to the debugger.
%files
%defattr(-, root, root)
%doc AUTHORS COPYING ChangeLog README NEWS
%{_bindir}/mdb*
%{_libdir}/*.so*
%{_prefix}/lib/mono/2.0/mdb*.exe
%{_prefix}/lib/mono/gac/Mono.Debugger*
%{_prefix}/lib/mono/mono-debugger
%{_libdir}/pkgconfig/mono-debugger*.pc
%prep
%setup -q
%build
%configure
make
%install
make install DESTDIR=%{buildroot}
# Remove unnecessary devel files
rm -f %{buildroot}%_libdir/*.la
rm -f %{buildroot}%_libdir/*.a
%clean
rm -rf %{buildroot}
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%changelog