~ubuntu-branches/ubuntu/karmic/frozen-bubble/karmic

« back to all changes in this revision

Viewing changes to SDL_mixer_patched/SDL_mixer.spec.in

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2002-04-17 09:21:51 UTC
  • Revision ID: james.westby@ubuntu.com-20020417092151-7ye6ril7bgg9g0he
Tags: upstream-0.9.2
ImportĀ upstreamĀ versionĀ 0.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%define name @PACKAGE@
 
2
%define version @VERSION@
 
3
%define release 1
 
4
 
 
5
Summary: Simple DirectMedia Layer - Sample Mixer Library
 
6
Name: %{name}
 
7
Version: %{version}
 
8
Release: %{release}
 
9
Source0: %{name}-%{version}.tar.gz
 
10
Copyright: LGPL
 
11
Group: System Environment/Libraries
 
12
BuildRoot: /var/tmp/%{name}-buildroot
 
13
Prefix: %{_prefix}
 
14
 
 
15
%description
 
16
Due to popular demand, here is a simple multi-channel audio mixer.
 
17
It supports 4 channels of 16 bit stereo audio, plus a single channel
 
18
of music, mixed by the popular MikMod MOD, Timidity MIDI and SMPEG MP3
 
19
libraries.
 
20
 
 
21
%package devel
 
22
Summary: Libraries, includes and more to develop SDL applications.
 
23
Group: Development/Libraries
 
24
Requires: %{name}
 
25
 
 
26
%description devel
 
27
Due to popular demand, here is a simple multi-channel audio mixer.
 
28
It supports 4 channels of 16 bit stereo audio, plus a single channel
 
29
of music, mixed by the popular MikMod MOD, Timidity MIDI and SMPEG MP3
 
30
libraries.
 
31
 
 
32
%prep
 
33
%setup 
 
34
 
 
35
%build
 
36
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --disable-music-mp3
 
37
make
 
38
 
 
39
%install
 
40
rm -rf $RPM_BUILD_ROOT
 
41
make install prefix=$RPM_BUILD_ROOT/%{prefix}
 
42
 
 
43
%clean
 
44
rm -rf $RPM_BUILD_ROOT
 
45
 
 
46
%files
 
47
%defattr(-,root,root)
 
48
%doc README CHANGES COPYING
 
49
%{prefix}/bin/playmus
 
50
%{prefix}/bin/playwave
 
51
%{prefix}/lib/lib*.so.*
 
52
 
 
53
%files devel
 
54
%defattr(-,root,root)
 
55
%{prefix}/lib/lib*.a
 
56
%{prefix}/lib/lib*.so
 
57
%{prefix}/include/SDL/
 
58
 
 
59
%changelog
 
60
* Wed Jan 19 2000 Sam Lantinga 
 
61
- converted to get package information from configure
 
62
* Sun Jan 16 2000 Hakan Tandogan <hakan@iconsult.com>
 
63
- initial spec file
 
64