package created using the webbuild interface [release 0.5.1-1mamba;Tue May 30 2023]

This commit is contained in:
Silvan Calarco 2024-01-05 20:13:04 +01:00
parent 5aebb8909b
commit 84250941cc
2 changed files with 44 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# aha # aha
Tool which converts ANSI escape sequences of a unix terminal to HTML code.

42
aha.spec Normal file
View File

@ -0,0 +1,42 @@
Name: aha
Version: 0.5.1
Release: 1mamba
Summary: Tool which converts ANSI escape sequences of a unix terminal to HTML code
Group: System/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/theZiz/aha
Source: https://github.com/theZiz/aha.git/%{version}/aha-%{version}.tar.bz2
License: LGPL, MPL 1.1
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
## AUTOBUILDREQ-END
%description
Tool which converts ANSI escape sequences of a unix terminal to HTML code.
%debug_package
%prep
%setup -q
%build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall PREFIX=%{_prefix}
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/aha
%{_mandir}/man1/aha.1*
%doc LICENSE.*
%changelog
* Tue May 30 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 0.5.1-1mamba
- package created using the webbuild interface