]> git.pld-linux.org Git - packages/SDL_mixer.git/blob - SDL_mixer.spec
- raw version.
[packages/SDL_mixer.git] / SDL_mixer.spec
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}
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 %{prefix}/lib/lib*.so
53
54 %files devel
55 %defattr(-,root,root)
56 %{prefix}/lib/*a
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
This page took 0.055206 seconds and 3 git commands to generate.