1 |
cebix |
1.1 |
%define name @PACKAGE@ |
2 |
|
|
%define version @VERSION@ |
3 |
|
|
%define release 1 |
4 |
|
|
|
5 |
|
|
Summary: Command-line file manipulation tool and disassembler |
6 |
|
|
Name: %{name} |
7 |
|
|
Version: %{version} |
8 |
|
|
Release: %{release} |
9 |
cebix |
1.6 |
License: GPL |
10 |
cebix |
1.1 |
Group: Utilities/File |
11 |
cebix |
1.6 |
Source0: %{name}-%{version}.tar.gz |
12 |
cebix |
1.5 |
URL: http://cxmon.cebix.net/ |
13 |
cebix |
1.6 |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) |
14 |
cebix |
1.1 |
Prefix: %{_prefix} |
15 |
|
|
|
16 |
|
|
%description |
17 |
|
|
cxmon is an interactive command-driven file manipulation tool that is |
18 |
cebix |
1.2 |
inspired by the "Amiga Monitor" by Timo Rossi. It has commands and features |
19 |
|
|
similar to a machine code monitor/debugger, but it lacks any functions for |
20 |
|
|
running/tracing code. There are, however, built-in PowerPC, 680x0, 80x86, |
21 |
cebix |
1.3 |
x86-64, 6502 and Z80 disassemblers and special support for disassembling |
22 |
|
|
MacOS code. |
23 |
cebix |
1.1 |
|
24 |
|
|
%prep |
25 |
|
|
%setup -q |
26 |
|
|
|
27 |
|
|
%build |
28 |
cebix |
1.6 |
%configure |
29 |
|
|
make |
30 |
cebix |
1.1 |
|
31 |
|
|
%install |
32 |
|
|
rm -rf ${RPM_BUILD_ROOT} |
33 |
cebix |
1.6 |
%makeinstall |
34 |
cebix |
1.1 |
|
35 |
|
|
%clean |
36 |
|
|
rm -rf ${RPM_BUILD_ROOT} |
37 |
|
|
|
38 |
|
|
%files |
39 |
|
|
%defattr(-,root,root) |
40 |
|
|
%doc AUTHORS ChangeLog COPYING README |
41 |
|
|
%{_bindir}/* |
42 |
|
|
%{_mandir}/man1/* |