- Update to version 2.1.2: * songlength DB: fix parsing of milliseconds with leading zeroes * Fixed building hardsid support * reSIDfp: shift register regression fixes * Updated RAM init pattern similar to how it's done in VICE * Do not use smart pointers in public headers (Warning! breaks ABI compatibility) * resid/residfp: Use soft instead of hard clipping rough implementation of bitfade * residfp: better bandpass frequency calculation, updated 8580 resistor ratios based on schematics and adjusted voltage range, updated TTL values, assume a high impedance audio amplifier yielding an 1.6Hz high-pass - Update to version 2.0.5: * Fixed CIA SDR handling, code borrowed from Denise emulator * Fixed external filter coefficients calculation in resid/residfp * Update osc3 on waveform zero in resid/residfp * Further improved CPU/CIA/VICII emulation based on VICE testprogs * Fixed an envelope generator regression in resid/residfp * Improved noise+pulse interaction in resid/residfp * Avoid saturation of residfp 8580 filter * Adjusted residfp 6581 filter parameter range * Recalculate noise output when actually changed in residfp * Fix loading stereo mus tunes * Fix residfp envelope * Make digiboost work with resid * Make MUS loading more robust to malformed files * Reworked SidDatabase API * Fix hang on exit * CIA model is now configurable * Added digiboost support * Added support for milliseconds in SLDB * Improved 8580 filter * CIA and SID fixes ported from VICE * Added MOS 6573 (PAL-M) emulation * Other minor fixes and code cleanup * Do not use kernal calls in psid driver OBS-URL: https://build.opensuse.org/request/show/888481 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libsidplayfp?expand=0&rev=8
106 lines
3.1 KiB
RPMSpec
106 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package libsidplayfp
|
|
#
|
|
# Copyright (c) 2021 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/
|
|
#
|
|
|
|
|
|
%define soname 6
|
|
%define stilview_soname 0
|
|
Name: libsidplayfp
|
|
Version: 2.1.2
|
|
Release: 0
|
|
Summary: A library to play Commodore 64 music
|
|
License: GPL-2.0-or-later
|
|
Group: System/Libraries
|
|
URL: https://sourceforge.net/projects/sidplay-residfp/
|
|
Source0: https://sourceforge.net/projects/sidplay-residfp/files/libsidplayfp/2.1/libsidplayfp-%{version}.tar.gz
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libgcrypt-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(libftdi1)
|
|
|
|
%description
|
|
A library to play Commodore 64 music based on libsidplay2.
|
|
|
|
%package -n libsidplayfp%{soname}
|
|
Summary: A library to play Commodore 64 music
|
|
Group: System/Libraries
|
|
|
|
%description -n libsidplayfp%{soname}
|
|
A library to play Commodore 64 music based on libsidplay2.
|
|
|
|
%package devel
|
|
Summary: Development files for libsidplayfp
|
|
Group: Development/Libraries/C and C++
|
|
Requires: libsidplayfp%{soname} = %{version}
|
|
|
|
%description devel
|
|
This package contains headers and libraries required to build applications that
|
|
use libsidplayfp.
|
|
|
|
%package -n libstilview%{stilview_soname}
|
|
Summary: A library to play Commodore 64 music
|
|
Group: System/Libraries
|
|
|
|
%description -n libstilview%{stilview_soname}
|
|
A library to play Commodore 64 music based on libsidplay2.
|
|
|
|
%package -n libstilview-devel
|
|
Summary: Development files for libstilview
|
|
Group: Development/Libraries/C and C++
|
|
Requires: libstilview%{stilview_soname} = %{version}
|
|
|
|
%description -n libstilview-devel
|
|
This package contains headers and libraries required to build applications that
|
|
use libstilview.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure --disable-static
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
|
|
%post -n libsidplayfp%{soname} -p /sbin/ldconfig
|
|
%postun -n libsidplayfp%{soname} -p /sbin/ldconfig
|
|
%post -n libstilview%{stilview_soname} -p /sbin/ldconfig
|
|
%postun -n libstilview%{stilview_soname} -p /sbin/ldconfig
|
|
|
|
%files -n libsidplayfp%{soname}
|
|
%license COPYING
|
|
%{_libdir}/libsidplayfp.so.%{soname}*
|
|
|
|
%files -n libstilview%{stilview_soname}
|
|
%license COPYING
|
|
%{_libdir}/libstilview.so.%{stilview_soname}*
|
|
|
|
%files devel
|
|
%doc AUTHORS NEWS README TODO
|
|
%{_libdir}/libsidplayfp.so
|
|
%{_includedir}/sidplayfp/
|
|
%{_libdir}/pkgconfig/libsidplayfp.pc
|
|
|
|
%files -n libstilview-devel
|
|
%doc AUTHORS NEWS README TODO
|
|
%{_libdir}/libstilview.so
|
|
%{_includedir}/stilview/
|
|
%{_libdir}/pkgconfig/libstilview.pc
|
|
|
|
%changelog
|