2024-01-06 06:53:45 +01:00
|
|
|
Name: makeself
|
2024-01-06 06:53:46 +01:00
|
|
|
Version: 2.5.0
|
2024-01-06 06:53:45 +01:00
|
|
|
Release: 1mamba
|
|
|
|
Summary: A small shell script that generates a self-extractable tar.gz archive from a directory
|
|
|
|
Group: Applications/Archiving
|
|
|
|
Vendor: openmamba
|
|
|
|
Distribution: openmamba
|
|
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
2024-01-06 06:53:45 +01:00
|
|
|
URL: https://makeself.io/
|
2024-01-06 06:53:45 +01:00
|
|
|
Source: https://github.com/megastep/makeself.git/release-%{version}/makeself-%{version}.tar.bz2
|
2024-01-06 06:53:45 +01:00
|
|
|
License: GPL
|
|
|
|
BuildArch: noarch
|
2024-01-06 06:53:45 +01:00
|
|
|
## AUTOBUILDREQ-BEGIN
|
|
|
|
## AUTOBUILDREQ-END
|
2024-01-06 06:53:45 +01:00
|
|
|
Requires: bzip2
|
|
|
|
Requires: gzip
|
|
|
|
Requires: gnupg
|
|
|
|
|
|
|
|
%description
|
|
|
|
makeself.sh is a small shell script that generates a self-extractable tar.gz archive from a directory. The resulting file appears as a shell script (many of those have a .run suffix), and can be launched as is. The archive will then uncompress itself to a temporary directory and an optional arbitrary command will be executed (for example an installation script).
|
|
|
|
|
|
|
|
%prep
|
2024-01-06 06:53:45 +01:00
|
|
|
%setup -q
|
2024-01-06 06:53:45 +01:00
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%install
|
|
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
install -D -m0755 makeself.sh %{buildroot}%{_bindir}/makeself
|
|
|
|
install -D -m0755 makeself.sh %{buildroot}%{_bindir}/makeself-header.sh
|
|
|
|
install -D -m0644 makeself.1 %{buildroot}%{_mandir}/man1/makeself.1
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_bindir}/makeself
|
|
|
|
%{_bindir}/makeself-header.sh
|
|
|
|
%{_mandir}/man1/makeself.1*
|
2024-01-06 06:53:45 +01:00
|
|
|
%doc COPYING
|
2024-01-06 06:53:45 +01:00
|
|
|
|
|
|
|
%changelog
|
2024-01-06 06:53:46 +01:00
|
|
|
* Tue Mar 14 2023 Automatic Build System <autodist@mambasoft.it> 2.5.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-06 06:53:45 +01:00
|
|
|
* Thu Jun 24 2021 Automatic Build System <autodist@mambasoft.it> 2.4.5-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-06 06:53:45 +01:00
|
|
|
* Sat Jun 19 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 2.4.4-1mamba
|
|
|
|
- update to 2.4.4
|
|
|
|
|
2024-01-06 06:53:45 +01:00
|
|
|
* Wed Feb 10 2021 Automatic Build System <autodist@mambasoft.it> 2.4.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-06 06:53:45 +01:00
|
|
|
* Mon Oct 12 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 2.2.0-1mamba
|
|
|
|
- update to 2.2.0
|
|
|
|
|
2024-01-06 06:53:45 +01:00
|
|
|
* Sun Jan 23 2011 Silvan Calarco <silvan.calarco@mambasoft.it> 2.1.5-1mamba
|
|
|
|
- package created by autospec
|