ft2-clone/ft2-clone.spec
Takashi Iwai 6038181b94 - Update to version 1.89
* Fixed a possible crash on macOS (and possibly Linux) when
    loading a module whose filename includes special non-ASCII
    characters.
  * Added a "Default audio device" option when selecting
    input/output audio devices in the config screen. This option
    has a few edge-case bugs, though.
  * Added an experimental Impulse Tracker module loader. This
    should only be used to extract patterns/instruments/samples,
    as there are severe conversion errors when this format is
    converted to XM under load. WARNING: This loader has not
    been thoroughly tested, and may cause a crash!
  * Fixed a bug with the tracker scopes where the sample would
    sometimes not be isplayed correctly during a sample/note
    trigger.
  * Replaced the Gaussian (SNES) interpolator with a 6-point
    cubic Hermite option. The Gaussian interpolator was very niche
    anyway, and as it sounded quite filtered, I think the vast
    majority of users wouldn't see a use for it.
  * Added a few missing Norwegian/Danish alphabet letters to the
    main font (code page is now 850 instead of 437).
  * Show extra digits (when space for them) in the C-4 Hz string
    in the instrument editor screen.
  * Again, slightly improved the interpolation method for the
    tracker scopes in "Lined" mode (when using the cubic/sinc
    interpolators)
  * Slightly increased the contrast for the sample editor's loop
    pin lines.

OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/ft2-clone?expand=0&rev=40
2024-12-08 09:06:19 +00:00

65 lines
2.0 KiB
RPMSpec

#
# spec file for package ft2-clone
#
# Copyright (c) 2024 SUSE LLC
#
# 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: ft2-clone
Version: 1.89
Release: 0
Summary: Fasttracker II clone
License: BSD-3-Clause AND CC-BY-NC-SA-4.0
Group: Productivity/Multimedia/Sound/Editors and Convertors
URL: https://16-bits.org/ft2.php
#Git-Clone: https://github.com/8bitbubsy/ft2-clone.git
Source: https://github.com/8bitbubsy/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
Source1: %{name}.desktop
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: icns-utils
BuildRequires: pkgconfig
BuildRequires: pkgconfig(alsa)
BuildRequires: pkgconfig(flac)
BuildRequires: pkgconfig(sdl2)
Provides: bundled(rtmidi)
%description
Multi-platform clone of the classic music making software
Fasttracker II. It can load XM, MOD, S3M, STM module files.
%prep
%setup -q
icns2png -x "release/macos/ft2-clone-macos.app/Contents/Resources/ft2-clone-macos.icns"
rm -R src/libflac
%build
%cmake -DEXTERNAL_LIBFLAC=ON
%cmake_build
%install
%cmake_install
install -Dpm 0644 %{SOURCE1} %{buildroot}%{_datadir}/applications/%{name}.desktop
install -Dpm 0644 ft2-clone-macos_512x512x32.png %{buildroot}%{_datadir}/pixmaps/%{name}.png
%files
%license LICENSE LICENSES.txt src/gfxdata/bmp/LICENSE.txt
%doc README.md release/problems.txt
%{_bindir}/%{name}
%{_datadir}/applications/%{name}.desktop
%{_datadir}/pixmaps/%{name}.png
%changelog