package created by autospec [release src-1mamba;Thu Feb 10 2011]

This commit is contained in:
Silvan Calarco 2024-01-05 20:45:19 +01:00
parent faf9a31dc3
commit bf01b6d633
2 changed files with 45 additions and 0 deletions

View File

@ -1,2 +1,7 @@
# bar # bar
This is a small shell script intended to be used in portable Unix install scripts for showing progress bars.
The overall goal is to write a minimally complex shell script (thus a program that needs no compilation) that is as robust as possible to work on as many Bourne shells and operating systems as possible, and that implements cat with an ASCII progress bar and some other nifty features.
This is pure Bourne shell code. (For sh, ash, ksh, zsh, bash, ...)
The script is mainly intended to be used in portable install scripts, where you can use the body of the script.

40
bar.spec Normal file
View File

@ -0,0 +1,40 @@
### AUTOUPDATE-OFF: 9
Name: bar
Version: 1.4
Release: 1mamba
Summary: A small shell script intended to be used in portable Unix install scripts for showing progress bars
Group: System/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://www.theiling.de/projects/bar.html
Source: http://www.theiling.de/downloads/bar-%{version}-src.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
This is a small shell script intended to be used in portable Unix install scripts for showing progress bars.
The overall goal is to write a minimally complex shell script (thus a program that needs no compilation) that is as robust as possible to work on as many Bourne shells and operating systems as possible, and that implements cat with an ASCII progress bar and some other nifty features.
This is pure Bourne shell code. (For sh, ash, ksh, zsh, bash, ...)
The script is mainly intended to be used in portable install scripts, where you can use the body of the script.
%prep
%setup -q
%build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
install -D -m0755 bar %{buildroot}%{_bindir}/bar
%files
%defattr(-,root,root)
%{_bindir}/bar
%doc COPYING README
%changelog
* Thu Feb 10 2011 Silvan Calarco <silvan.calarco@mambasoft.it> src-1mamba
- package created by autospec