mirror of
https://abf.rosa.ru/djam/nesasm.git
synced 2025-02-23 09:42:47 +00:00
33 lines
703 B
RPMSpec
33 lines
703 B
RPMSpec
%define debug_package %nil
|
|
|
|
Name: nesasm
|
|
Version: 3.6
|
|
Release: 1
|
|
Summary: A 6502 assembler with specific NES support
|
|
URL: https://github.com/ClusterM/nesasm
|
|
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
|
License: unknown
|
|
Group: Development/Other
|
|
BuildRequires: gcc
|
|
|
|
%description
|
|
Just another modification of nesasm. Based on modification
|
|
by Tim Hentenaar which is based on modification by Bob Rost
|
|
which is based on modification of nesasm 2.51 from MagicKit
|
|
which is based on 6502 assembler by J. H. Van Ornum.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
pushd source
|
|
%make
|
|
popd
|
|
|
|
%install
|
|
install -Dm0755 %{name} %{buildroot}%{_bindir}/%{name}
|
|
|
|
%files
|
|
%doc README.md documentation
|
|
%{_bindir}/%{name}
|
|
|