Imported from SRPM

This commit is contained in:
Sergey Zhemoytel 2023-09-08 10:50:27 +03:00
commit 4c77b4da93
2 changed files with 35 additions and 0 deletions

2
.abf.yml Normal file
View file

@ -0,0 +1,2 @@
sources:
nesasm-3.6.tar.gz: 0a5045119441abf4c2b4885d1d083e58a943dc49

33
nesasm.spec Normal file
View file

@ -0,0 +1,33 @@
%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}