package created using the webbuild interface [release 20140305-1mamba;Fri Mar 14 2014]

This commit is contained in:
Silvan Calarco 2024-01-05 19:09:10 +01:00
parent d185349cea
commit 909e1c0716
2 changed files with 47 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# vttest
Vttest tests the compatibility (demonstrates the non-compatibility) of so-called "VT100-compatible" terminals.

45
vttest.spec Normal file
View File

@ -0,0 +1,45 @@
Name: vttest
Version: 20140305
Release: 1mamba
Summary: Tests the compatibility of so-called "VT100-compatible" terminals
Group: Development/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://invisible-island.net/vttest/vttest.html
Source: http://invisible-island.net/datafiles/release/vttest.tar.gz
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Vttest tests the compatibility (demonstrates the non-compatibility) of so-called "VT100-compatible" terminals.
%debug_package
%prep
%setup -q
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/vttest
%{_mandir}/man1/vttest.1.gz
%doc COPYING
#%doc BUGS CHANGES README
%changelog
* Fri Mar 14 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 20140305-1mamba
- package created using the webbuild interface