package created using the webbuild interface [release 2.3.11-1mamba;Fri Nov 26 2021]

This commit is contained in:
Silvan Calarco 2024-01-05 19:31:48 +01:00
parent 614a7b5dc0
commit 146acb7073
2 changed files with 54 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# xa
Cross-assembler for the 6502 microprocessor.

52
xa.spec Normal file
View File

@ -0,0 +1,52 @@
Name: xa
Version: 2.3.11
Release: 1mamba
Summary: Cross-assembler for the 6502 microprocessor
Group: Development/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://www.floodgap.com/retrotech/xa/
Source: https://www.floodgap.com/retrotech/xa/dists/xa-%{version}.tar.gz
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
## AUTOBUILDREQ-END
%description
Cross-assembler for the 6502 microprocessor.
%debug_package
%prep
%setup -q
%build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall DESTDIR=%{buildroot}%{_prefix}
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/file65
%{_bindir}/ldo65
%{_bindir}/printcbm
%{_bindir}/reloc65
%{_bindir}/uncpk
%{_bindir}/xa
%{_mandir}/man1/file65.1*
%{_mandir}/man1/ldo65.1*
%{_mandir}/man1/printcbm.1*
%{_mandir}/man1/reloc65.1*
%{_mandir}/man1/uncpk.1*
%{_mandir}/man1/xa.1*
%doc COPYING
%changelog
* Fri Nov 26 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 2.3.11-1mamba
- package created using the webbuild interface