-
Notifications
You must be signed in to change notification settings - Fork 14
/
avarice.spec.in
63 lines (51 loc) · 1.37 KB
/
avarice.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
57
58
59
60
61
62
63
## -*- mode: rpm-spec; -*-
##
## $Id$
##
## @configure_input@
##
# We don't want rpm stripping any files
#%define __spec_install_post %{nil}
# Don't build the debuginfo rpm
%define debug_package %{nil}
Summary: Interface for GDB to Atmel AVR JTAGICE in circuit emulator.
Name: avarice
Version: @VERSION@
Release: 1
License: GPL
Group: Avr/Development/Tools
URL: http://avarice.sourceforge.net/
Source0: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
%description
AVaRICE is a program which interfaces the GNU Debugger with the AVR JTAG ICE
available from Atmel.
%prep
%setup -q
%build
./configure --prefix=%{_prefix} --mandir=%{_mandir}
make
%install
rm -rf $RPM_BUILD_ROOT
make prefix=$RPM_BUILD_ROOT%{_prefix} mandir=$RPM_BUILD_ROOT%{_mandir} install
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc ChangeLog AUTHORS INSTALL COPYING
%{_prefix}/bin/avarice
%{_prefix}/bin/start-avarice
%{_prefix}/bin/kill-avarice
%{_prefix}/bin/ice-gdb
%{_prefix}/bin/ice-insight
%{_prefix}/share/%{name}/gdb-avarice-script
%{_mandir}/man1/ice-insight.1
%{_mandir}/man1/ice-gdb.1
%{_mandir}/man1/avarice.1
%changelog
* Sat Dec 06 2003 Theodore A. Roth <[email protected]>
- Add avarice.1 man page.
* Thu Sep 18 2003 Theodore A. Roth <[email protected]>
- Add man pages.
* Fri Aug 15 2003 Theodore A. Roth <[email protected]>
- Initial build.