102 lines
3.1 KiB
RPMSpec
102 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package SDL2_mixer
|
|
#
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: SDL2_mixer
|
|
Version: 2.0.0
|
|
Release: 0
|
|
Summary: Sample Mixer Library for SDL2
|
|
License: Zlib
|
|
Group: System/Libraries
|
|
Url: http://www.libsdl.org/projects/SDL_mixer/
|
|
Source: http://www.libsdl.org/tmp/SDL_mixer/release/%{name}-%{version}.tar.gz
|
|
Source1: baselibs.conf
|
|
BuildRequires: flac-devel
|
|
BuildRequires: fluidsynth-devel
|
|
BuildRequires: libSDL2-devel
|
|
BuildRequires: libmikmod-devel
|
|
BuildRequires: libmodplug-devel
|
|
BuildRequires: libogg-devel
|
|
BuildRequires: libvorbis-devel
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
A multichannel audio mixer. It supports four channels of 16-bit stereo
|
|
audio, plus a single channel of music, mixed by the popular MikMod MOD,
|
|
Timidity MIDI, and SMPEG MP3 libraries.
|
|
|
|
%package -n libSDL2_mixer-2_0-0
|
|
Summary: Sample Mixer Library for SDL2
|
|
Group: System/Libraries
|
|
Provides: SDL2_mixer = %{version}
|
|
|
|
%description -n libSDL2_mixer-2_0-0
|
|
A multichannel audio mixer. It supports four channels of 16-bit stereo
|
|
audio, plus a single channel of music, mixed by the popular MikMod MOD,
|
|
Timidity MIDI, and SMPEG MP3 libraries.
|
|
|
|
%package -n libSDL2_mixer-devel
|
|
Summary: Sample Mixer Library for SDL2 - files mandatory for development
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{name} = %{version}
|
|
Requires: libSDL2-devel
|
|
Requires: libSDL2_mixer-2_0-0 = %{version}
|
|
Provides: SDL2_mixer-devel = %{version}
|
|
|
|
%description -n libSDL2_mixer-devel
|
|
A multi-channel audio mixer. It supports 4 channels of 16-bit stereo
|
|
audio, plus a single channel of music, mixed by the popular MikMod MOD,
|
|
Timidity MIDI, and SMPEG MP3 libraries.
|
|
|
|
%prep
|
|
%setup -q
|
|
rm -rf external
|
|
|
|
%build
|
|
%configure \
|
|
--disable-music-mod-modplug-shared \
|
|
--disable-music-mod-mikmod-shared \
|
|
--disable-music-fluidsynth-shared \
|
|
--disable-music-ogg-shared \
|
|
--disable-music-flac-shared \
|
|
--enable-music-mp3-smpeg-shared \
|
|
--disable-static \
|
|
--with-pic
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make install install-bin DESTDIR=%{buildroot}
|
|
rm -f %{buildroot}%{_libdir}/*.la
|
|
|
|
%post -n libSDL2_mixer-2_0-0 -p /sbin/ldconfig
|
|
|
|
%postun -n libSDL2_mixer-2_0-0 -p /sbin/ldconfig
|
|
|
|
%files -n libSDL2_mixer-2_0-0
|
|
%defattr(-,root,root)
|
|
%doc CHANGES.txt COPYING.txt README.txt
|
|
%{_libdir}/*.so.*
|
|
|
|
%files -n libSDL2_mixer-devel
|
|
%defattr(-,root,root)
|
|
%{_bindir}/play*
|
|
%{_includedir}/SDL2/*
|
|
%{_libdir}/*.so
|
|
%{_libdir}/pkgconfig/*
|
|
|
|
%changelog
|