- update to 2.5.0:
* Improved support for minimal Linux distributions such as
Alpine
* Added bzip3 compression support
* Increased control over GPG signing via the GPG extra
parameters
OBS-URL: https://build.opensuse.org/request/show/1084038
OBS-URL: https://build.opensuse.org/package/show/utilities/makeself?expand=0&rev=17
65 lines
2.2 KiB
RPMSpec
65 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package makeself
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
# Copyright (c) 2011-2017 Malcolm J Lewis <malcolmlewis@opensuse.org>
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: makeself
|
|
Version: 2.5.0
|
|
Release: 0
|
|
Summary: Make self-extractable archives on Unix
|
|
License: GPL-2.0-or-later
|
|
Group: Productivity/Archiving/Compression
|
|
URL: https://makeself.io/
|
|
Source0: https://github.com/megastep/makeself/archive/release-%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
Source1: %{name}.rpmlintrc
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
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).
|
|
|
|
This is pretty similar to archives generated with WinZip Self-Extractor in
|
|
the Windows world. Makeself archives also include checksums for integrity
|
|
self-validation (CRC and/or MD5 checksums).
|
|
|
|
%prep
|
|
%setup -q -n %{name}-release-%{version}
|
|
|
|
%build
|
|
|
|
%install
|
|
install -Dpm 0755 makeself.sh \
|
|
%{buildroot}%{_bindir}/makeself
|
|
ln -s %{_bindir}/makeself %{buildroot}%{_bindir}/makeself.sh
|
|
install -Dpm 0755 makeself-header.sh \
|
|
%{buildroot}%{_bindir}/makeself-header.sh
|
|
install -Dpm 0644 makeself.1 \
|
|
%{buildroot}%{_mandir}/man1/makeself.1
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc README.md
|
|
%{_bindir}/makeself-header.sh
|
|
%{_bindir}/makeself.sh
|
|
%{_bindir}/makeself
|
|
%{_mandir}/man1/makeself.1%{?ext_man}
|
|
|
|
%changelog
|