1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
# Configuration variables
%define name lmms
%define version 0.3.0
%define rel 1
%define release %{rel}%{?disttag}%{?repotag}
# Define what you can/want to build:
%define with_sdl 0%{nil}
%define with_jack 1%{nil}
%define with_vorbis 1%{nil}
%define with_flac 1%{nil}
%define with_sr 1%{nil}
%define with_sf 1%{nil}
# Build by setting these defines on the command line, for example:
# rpmbuild --define 'disttag .EL' --define 'repotag .fc6'
%{!?desktop_vendor: %{expand: %%define desktop_vendor rpmfarm}}
# This can be changed at build time:
# rpmbuild --define 'desktop_vendor RPMfarm'
#--------------------------------------------------------------------
Name: %{name}
Version: %{version}
Release: %{release}
Summary: powerful sequencer-, synthesizer- and sample-studio for Linux
Summary(de): Leistungsfaehiges Sequenzer-, Synthesizer- und Sample-Studio fuer Linux
License: GPL
URL: http://lmms.sourceforge.net/
Group: Applications/Multimedia
Provides: lmms = %{version}-%{release}
BuildRequires: gcc gcc-c++ libstdc++-devel autoconf automake libtool make
BuildRequires: alsa-lib-devel
BuildRequires: qt-devel > 3.0
# ------------- BuildRequires:
%if %{with_vorbis}
BuildRequires: libvorbis libvorbis-devel
%endif
%if %{with_sdl}
BuildRequires: SDL SDL-devel SDL_sound
%endif
%if %{with_sr}
BuildRequires: libsamplerate libsamplerate-devel
%endif
%if %{with_sf}
BuildRequires: libsndfile libsndfile-devel
%endif
%if %{with_jack}
BuildRequires: jack-audio-connection-kit-devel
%endif
%if %{with_flac}
BuildRequires: flac-devel
%endif
# ------------- Requires:
Requires: qt >= 3.0 alsa-lib
%if %{with_sr}
Requires: libsamplerate
%endif
%if %{with_sf}
Requires: libsndfile
%endif
%if %{with_jack}
Requires: jack-audio-connection-kit
%endif
%if %{with_vorbis}
Requires: libvorbis
%endif
%if %{with_flac}
Requires: flac
%endif
%if %{with_sdl}
Requires: SDL_sound
%endif
Requires: lmms-data
Source: %{name}-%{version}.tar.bz2
Patch1: %{name}-%{version}-patch
BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot
Prefix: %{_prefix}
%description
LMMS aims to be a free alternative to popular (but commercial and closed-
source) programs like FruityLoops, Cubase and Logic giving you the ability of
producing music with your computer by creating/synthesizing sounds, arranging
samples, playing live with keyboard and much more...
LMMS combines the features of a tracker-/sequencer-program (pattern-/channel-/
sample-/song-/effect-management) and those of powerful synthesizers and
samplers in a modern, user-friendly and easy to use graphical user-interface.
LMMS is still in heavy development, so with this version please don't expect a
complete, ready and bugfree program!!
%description -l de
LMMS ist eine freie Alternative zu bekannten (aber kommerziellen und
Closed-Source-) Programmen wie FruityLoops, Cubase und Logic, die Ihnen die
Moeglichkeit geben, mit Ihrem Computer Musik zu produzieren, indem Sie
Klaenge kreieren/synthetisieren, Samples anordnen, mit dem Keyboard live
spielen usw....
LMMS kombiniert die Funktionen eines Tracker-/Sequenzer-Programms (Pattern-/
Kanal-/Sample-/Song-/Effekt-Management) und die von leistungsfaehigen
Synthesizern und Samplern in einer modernen, benutzerfreundlichen und einfach zu
benutzenden grafischen Oberflaeche.
Derzeit befindet sich LMMS komplett in Entwicklung. Also erwarten Sie bitte mit
dieser Version nicht ein vollstaendiges, fertiges und fehlerfreies Programm!!
%package data
Summary: samples, presets, demo-projects and localization-files for LMMS
Summary(de): Samples, Presets, Demo-Projekte und Lokalisierungsdateien fuer LMMS
Group: Applications/Multimedia
Provides: lmms-data = %{version}-%{release}
%description data
This package contains platform-independent data and resources for Linux
MultiMedia Studio (LMMS), e.g. samples, presets and demo-projects.
%description data -l de
Dieses Paket beinhaltet plattform-unabhaengige Daten und Resourcen fuer Linux
MultiMedia Studio (LMMS), wie z.B. Samples, Presets und Demo-Projekte.
%prep
%setup -n %{name}-%{version}
%patch1 -p1 -b .EL
%build
%configure \
%if !%{with_jack}
--without-jack \
%endif
%if !%{with_sdl}
--without-sdl \
--without-sdlsound \
%endif
%if !%{with_vorbis}
--without-vorbis \
%endif
%if !%{with_flac}
--without-flac \
%endif
%if !%{with_sr}
--without-libsrc \
%endif
%if !%{with_sf}
--without-libsf \
%endif
%{__make} %{?_smp_mflags}
# Create a desktop menu entry
%{__cat} > %{name}.desktop << EOF
[Desktop Entry]
Name=Linux MultiMedia Studio
Comment=Powerful sequencer-, synthesizer- and sample-studio for Linux
Exec=lmms
Icon=%{_datadir}/%{name}/themes/default/icon.png
Terminal=false
Type=Application
Categories=Application;AudioVideo;X-Fedora;X-RPMfarm;
Encoding=UTF-8
EOF
%install
%{__rm} -rf %{buildroot}
make DESTDIR=$RPM_BUILD_ROOT install
# Install menu entry
%{__mkdir_p} %{buildroot}%{_datadir}/applications
desktop-file-install \
--vendor %{desktop_vendor} \
--dir %{buildroot}%{_datadir}/applications \
%{name}.desktop || :
%clean
%{__rm} -rf %{buildroot}
%files
%defattr(-, root, root, 0755)
%doc AUTHORS ChangeLog COPYING README TODO
%{_bindir}/lmms
%dir %{_libdir}/lmms
%{_libdir}/lmms/*
%{_mandir}/man*/lmms.*
%{_datadir}/applications/%{desktop_vendor}-%{name}.desktop
%files data
%defattr(-,root,root)
%dir %{_datadir}/lmms
%{_datadir}/lmms/*
%changelog
* Fri Apr 13 2007 Eric Lassauge <lassauge@users.fr.net> - 0.2.1-1
- build for FC6
- added dependencies and build configuration
- added .desktop file
* Tue Sep 20 2005 Tobias Doerffel
- added JACK-dependencies
* Fri Jul 22 2005 Tobias Doerffel
- added more dependencies for builds under SuSE
* Sat Jun 25 2005 Tobias Doerffel
- splitted package into lmms and lmms-data
- additional requirements
- updated project-homepage and email-address of packager
* Thu May 12 2005 Tobias Doerffel
- created lmms.spec.in
|