fluidsynth/fluidsynth.spec

102 lines
2.9 KiB
RPMSpec

#
# spec file for package fluidsynth
#
# Copyright (c) 2011 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: fluidsynth
BuildRequires: alsa-devel ladspa-devel libjack-devel readline-devel
BuildRequires: dbus-1-devel lash-devel libsndfile-devel pulseaudio-devel
BuildRequires: cmake
Summary: A Real-Time Software Synthesizer That Uses Soundfont(tm)
Version: 1.1.4
Release: 1
Group: Productivity/Multimedia/Sound/Midi
# Obsoletes: iiwusynth
# Provides: iiwusynth
AutoReqProv: on
License: LGPLv2.1+
Url: http://www.fluidsynth.org/
Source: %{name}-%{version}.tar.bz2
Patch1: fluidsynth-fix-build-lash.diff
Patch2: fluidsynth-add-missing-export-for-1.1.4.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
FluidSynth (formerly IIWU Synth) is based on the SoundFont(tm) 2
specifications. It is a real-time "software synthesizer". FluidSynth
can read MIDI events from the MIDI input device and render them to the
audio device. It can also play MIDI files.
%package devel
License: LGPLv2.1+
Summary: Development package for the fluidsynth library
Group: Development/Libraries/C and C++
Requires: libfluidsynth1 = %{version} glibc-devel
Provides: libfluidsynth-devel = %{version}
%description devel
This package contains the files needed to compile programs that use the
fluidsynth library.
%package -n libfluidsynth1
License: LGPLv2.1+
Summary: Library for Fluidsynth
Group: System/Libraries
%description -n libfluidsynth1
This package contains the shared library for Fluidsynth.
%prep
%setup -q
%patch1 -p1
%patch2 -p1
%build
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=%{_prefix} -Denable-ladspa=1
%{__make} VERBOSE=1
%install
cd build
make install DESTDIR=$RPM_BUILD_ROOT
%post -n libfluidsynth1 -p /sbin/ldconfig
%postun -n libfluidsynth1 -p /sbin/ldconfig
%clean
[ "$RPM_BUILD_ROOT" != "/" -a -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc AUTHORS COPYING ChangeLog NEWS README THANKS TODO
%doc %{_mandir}/man?/*
%{_bindir}/*
%files devel
%defattr(-,root,root)
%{_libdir}/lib*.so
%{_includedir}/*
%{_libdir}/pkgconfig/*.pc
%files -n libfluidsynth1
%defattr(-,root,root)
%{_libdir}/lib*.so.*
%changelog