innoextract/innoextract.spec
Martin Pluskal a3546f22a5 Accepting request 731352 from home:mnhauke
- Udpate to version 1.8
  * Added support for:
    + Inno Setup 6.0.0 installers
    + pre-release Inno Setup 5.6.2 installers used by GOG
    + two modified Inno Setup 5.5.7 variants
    + Inno Setup 1.3.0 to 1.3.23
    + My Inno Setup Extensions installers older than 3.0.6.1
    + modified Inno Setup variants using an alternative setup loader
      magic
    + automatically reading external setup.0 files
  * Encoding for non-Unicode installers is now determined from the
    languages supported by the installer, overridable using the
    --codepage option
  * Implemented parsing of GOG Galaxy architecture constraints
  * Fixed extracting files from slices larger than 2 GiB with
    32-bit builds
  * Fixed output path for files with absolute paths
    (canonicalization now strips all unsafe characters)
  * Fixed output directory being created even when not extracting
    files
  * Fixed a hang when using the --language option
  * Improved checksum verification for files reconstructed from
    GOG Galaxy file parts
  * Changed header parsing to select the first version without
    warnings and failing that the first without errors
  * Changed filesystem and output encoding to WTF-8 (extended UTF-8)
    to represent broken UTF-16 data

OBS-URL: https://build.opensuse.org/request/show/731352
OBS-URL: https://build.opensuse.org/package/show/Archiving/innoextract?expand=0&rev=24
2019-09-17 10:52:37 +00:00

67 lines
2.1 KiB
RPMSpec

#
# spec file for package innoextract
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2012 Pascal Bleser <pascal.bleser@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: innoextract
Version: 1.8
Release: 0
Summary: A tool to extract Inno Setup installers under non-windows systems
License: Zlib
Group: Productivity/Archiving/Backup
URL: http://constexpr.org/innoextract/
Source: http://constexpr.org/innoextract/files/%{name}-%{version}.tar.gz
Source1: http://constexpr.org/innoextract/files/%{name}-%{version}.tar.gz.sig
Source2: %{name}.keyring
BuildRequires: cmake >= 2.8.0
BuildRequires: gcc-c++
BuildRequires: libboost_date_time-devel
BuildRequires: libboost_filesystem-devel
BuildRequires: libboost_iostreams-devel
BuildRequires: libboost_program_options-devel
BuildRequires: libboost_system-devel
BuildRequires: pkgconfig
BuildRequires: python3-base
BuildRequires: pkgconfig(bzip2)
BuildRequires: pkgconfig(liblzma)
BuildRequires: pkgconfig(zlib)
%description
Inno Setup is a tool to create installers for Microsoft Windows
applications. Inno Extracts allows to extract such installers under
non-windows systems without running the actual installer using wine. Inno
Extract currently supports installers created by Inno Setup 1.2.10 to
5.4.3.
%prep
%setup -q
%build
%cmake
%make_jobs
%install
%cmake_install
%files
%license LICENSE
%doc CHANGELOG README.md
%{_bindir}/innoextract
%{_mandir}/man1/innoextract.1%{?ext_man}
%changelog