package created using the webbuild interface [release 5.4.2-1mamba;Thu Nov 30 2017]

This commit is contained in:
Silvan Calarco 2024-01-05 20:05:12 +01:00
parent 92016fdd2e
commit 8672a246f0
2 changed files with 68 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# zsh
Zsh is a shell designed for interactive use, although it is also a powerful scripting language. More information can be found on the "Zsh Web Pages" sites.

66
zsh.spec Normal file
View File

@ -0,0 +1,66 @@
Name: zsh
Version: 5.4.2
Release: 1mamba
Summary: A shell designed for interactive us
Group: Applications/Shells
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://www.zsh.org/
Source: https://downloads.sourceforge.net/project/zsh/zsh/%{version}/zsh-%{version}.tar.xz
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgdbm-devel
BuildRequires: libncurses-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Zsh is a shell designed for interactive use, although it is also a powerful scripting language. More information can be found on the "Zsh Web Pages" sites.
%debug_package
%prep
%setup -q
%build
%configure \
--bindir=/bin \
--with-tcsetpgrp
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
/bin/zsh
/bin/zsh-%{version}
%dir %{_libdir}/zsh/%{version}/zsh
%{_libdir}/zsh/%{version}/zsh/*.so
%dir %{_libdir}/zsh/%{version}/zsh/db
%{_libdir}/zsh/%{version}/zsh/db/*.so
%dir %{_libdir}/zsh/%{version}/zsh/net
%{_libdir}/zsh/%{version}/zsh/net/*.so
%dir %{_libdir}/zsh/%{version}/zsh/param
%{_libdir}/zsh/%{version}/zsh/param/*.so
%dir %{_datadir}/zsh/%{version}
%dir %{_datadir}/zsh/%{version}/functions
%{_datadir}/zsh/%{version}/functions/*
%dir %{_datadir}/zsh/%{version}/help
%{_datadir}/zsh/%{version}/help/*
%dir %{_datadir}/zsh/%{version}/scripts
%{_datadir}/zsh/%{version}/scripts/*
%{_mandir}/man1/zsh*.1*
%doc LICENCE
#% doc ChangeLog NEWS README
%changelog
* Thu Nov 30 2017 Silvan Calarco <silvan.calarco@mambasoft.it> 5.4.2-1mamba
- package created using the webbuild interface