33 lines
850 B
RPMSpec
33 lines
850 B
RPMSpec
Name: banner
|
|
Summary: Prints a short string to the console in very large letters
|
|
Version: 1.3.5
|
|
Release: 1
|
|
License: GPLv2
|
|
BuildRequires: gcc make
|
|
URL: https://github.com/pronovic/banner
|
|
Source0: https://github.com/pronovic/banner/releases/download/BANNER_V%{version}/banner-%{version}.tar.gz
|
|
%description
|
|
Classic-style banner program similar to the one found in Solaris or AIX.
|
|
The banner program prints a short string to the console in very large
|
|
letters.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%doc AUTHORS COPYING README ChangeLog
|
|
%{_bindir}/banner
|
|
%{_mandir}/man1/banner*
|
|
|
|
%changelog
|
|
* Mon Sep 6 2021 wulei <wulei80@huawei.com> - 1.3.5-1
|
|
- package init
|