]> git.pld-linux.org Git - packages/fluidsynth.git/blob - fluidsynth.spec
- added missed fluid_sse.h
[packages/fluidsynth.git] / fluidsynth.spec
1 #
2 # Conditional build:
3 # _with_sse     -Use the SSE instructions of Pentium3+
4 #
5 Summary:        FluidSynth is a software, real-time synthesizer
6 Summary(pl):    FluidSynth to programowy , czasu rzeczywistego syntezator
7 Name:           fluidsynth
8 Version:        1.0.1
9 Release:        1
10 License:        GPL
11 Group:          Applications/Sound
12 Source0:        http://savannah.nongnu.org/download/fluid/stable.pkg/%{version}/%{name}-%{version}.tar.gz
13 Source1:        %{name}-fluid_sse.h
14 URL:            http://www.fluidsynth.org/
15 BuildRequires:  alsa-lib-devel >= 0.9.0
16 BuildRequires:  jack-audio-connection-kit-devel
17 Requires:       alsa-lib
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 Fluid Synth is a software, real-time synthesizer based on the
22 Soundfont 2 specifications.
23
24 %description -l pl
25 Fluid Synth to programowy, czasu rzeczywistego syntezator bazuj±cy na
26 specyfikacji Soundfont 2
27
28 %package devel
29 Summary:        Development files for the FluidSynth
30 Summary(pl):    Pliki nag³ówkowe dla FluidSynth
31 Group:          Development/Libraries
32 Requires:       %{name} = %{version}
33
34 %description devel
35 This package contains the header files necessary to develop
36 applications using FluidSynth - header files.
37
38 %description devel -l pl
39 Pakiet tem zawiera pliki nag³ówkowe potrzebne do tworzenia i
40 kompilacji aplikacji korzystaj±cych z bibliotek FluidSynth.
41
42
43 %package static
44 Summary:        Static libraries for the FluidSynth
45 Summary(pl):    Statyczne wersje bibliotek z FluidSynth
46 Group:          Development/Libraries
47 Requires:       %{name}-devel = %{version}
48
49 %description static
50 This package contains static libraries for the FluidSynth library.
51
52 %description static -l pl
53 Ten pakiet zawiera biblioteki statyczne dla FluidSynth
54
55 %prep
56 %setup -q
57 cp %{SOURCE1} src/fluid_sse.h
58
59 %build
60 %configure \
61         --enable-ladspa \
62         --enable-midishare \
63         --enable-jack-support \
64         --enable-coreaudio \
65         %{?_with_sse:--enable-SSE}
66 %{__make}
67
68 %install
69 rm -rf $RPM_BUILD_ROOT
70 install -d $RPM_BUILD_ROOT
71
72 %{__make} install DESTDIR=$RPM_BUILD_ROOT
73
74 %clean
75 rm -rf $RPM_BUILD_ROOT
76
77 %files
78 %defattr(644,root,root,755)
79 %doc ChangeLog README
80 %{_mandir}/man1/*
81 %attr(755,root,root) %{_bindir}/*
82 %attr(755,root,root) %{_libdir}/lib%{name}.so.1*
83
84 %files devel
85 %attr(755,root,root) %{_libdir}/lib%{name}.la
86 %{_libdir}/lib%{name}.a
87 %{_libdir}/pkgconfig/fluidsynth.pc
88 %defattr(644,root,root,755)
89 %{_includedir}/%{name}.h
90 %dir %{_includedir}/%{name}
91 %{_includedir}/%{name}/*.h
92
93 %files static
94 %{_libdir}/lib%{name}.a
This page took 0.06089 seconds and 3 git commands to generate.