source: projects/specs/trunk/S/SDL_mixer/SDL_mixer-vl.spec @ 521

Revision 521, 3.7 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary: Simple DirectMedia Layer - Sample Mixer Library
2Name:    SDL_mixer
3Version: 1.2.8
4Release: 1%{?_dist_release}
5Source0: http://www.libsdl.org/projects/%{name}/%{name}-%{version}.tar.gz
6License: LGPL
7Group: System Environment/Libraries
8BuildRoot: %{_tmppath}/%{name}-%{version}-root
9BuildRequires: SDL-devel >= 1.2.10
10BuildRequires: sane
11BuildRequires: libtool automake autoconf
12BuildRequires: libvorbis-devel
13BuildRequires: libogg-devel
14Requires: libvorbis
15Requires: libogg
16Requires: smpeg
17
18%description
19Due to popular demand, here is a simple multi-channel audio mixer.
20It supports 4 channels of 16 bit stereo audio, plus a single channel
21of music, mixed by the popular MikMod MOD, Timidity MIDI and SMPEG MP3
22libraries.
23
24%description -l ja
25これはシンプルなマルチチャンネルなオーディオミキサーです。
264チャンネルの16 bitステレオオーディオ+一般的なMikMod MOD、
27Timidity MIDIやSMPEG MP3ライブラリよって
28ミックスされた1チャンネルの音楽をサポートします。
29
30%package devel
31Summary: Libraries, includes and more to develop SDL applications.
32Group: Development/Libraries
33Requires: %{name} = %{version}
34
35%description devel
36Due to popular demand, here is a simple multi-channel audio mixer.
37It supports 4 channels of 16 bit stereo audio, plus a single channel
38of music, mixed by the popular MikMod MOD, Timidity MIDI and SMPEG MP3
39libraries.
40
41%description devel -l ja
42これはシンプルなマルチチャンネルなオーディオミキサーです。
434チャンネルの16 bitステレオオーディオ+一般的なMikMod MOD、
44Timidity MIDIやSMPEG MP3ライブラリよって
45ミックスされた1チャンネルの音楽をサポートします。
46
47%prep
48%setup -q
49
50%build
51%configure
52make
53
54%install
55rm -rf $RPM_BUILD_ROOT
56%makeinstall
57
58# installed binary
59%__mkdir_p $RPM_BUILD_ROOT%{_bindir}
60/bin/sh ./libtool  --mode=install /usr/bin/install -c build/playmus \
61$RPM_BUILD_ROOT%{_bindir}
62/bin/sh ./libtool  --mode=install /usr/bin/install -c build/playwave \
63$RPM_BUILD_ROOT%{_bindir}
64
65rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
66
67%clean
68rm -rf $RPM_BUILD_ROOT
69
70%post -p /sbin/ldconfig
71
72%postun -p /sbin/ldconfig
73
74%files
75%defattr(-,root,root)
76%doc README CHANGES COPYING
77%{_bindir}/playmus
78%{_bindir}/playwave
79%{_libdir}/lib*.so.*
80
81%files devel
82%defattr(-,root,root)
83%{_libdir}/lib*.a
84%{_libdir}/lib*.so
85%{_includedir}/SDL/*
86
87%changelog
88* Sun Sep 21 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.2.8-1
89- applied new versioning policy
90- spec in UTF-8
91
92* Tue Oct 30 2007 Shu KONNO <owa@bg.wakwak.com> 1.2.8-0vl2
93- added Requires: smpeg
94
95* Sun Sep 02 2007 Shu KONNO <owa@bg.wakwak.com> 1.2.8-0vl1
96- update SDL_mixer to 1.2.8
97- dropt BuildPreReq: smpeg-devel
98- dropt Requires: smpeg
99
100* Mon Jan 15 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.2.7-0vl1
101- new upstream release
102- added %post and %postun section
103
104* Mon Mar 21 2005 Satoshi MACHINO <machino@vinelinux.org> 1.2.6-0vl2
105- fixed included devel package
106
107* Sat Mar 19 2005 Satoshi MACHINO <machino@vinelinux.org> 1.2.6-0vl1
108- new upstream release
109- enabled music-ogg, music-mp3
110
111* Mon Oct 11 2004 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.2.5-0vl3
112- rebuilt without alsa
113
114* Wed May 05 2004 Satoshi MACHINO <machino@vinelinux.org> 1.2.5-0vl2
115- added japanese description
116- built by SDL-1.2.7
117 
118* Sun May 11 2003 Satoshi MACHINO <machino@vinelinux.org> 1.2.5-0vl1
119- new upstram version
120- used rpmmacros
121
122* Tue Jul 02 2002 Satoshi MACHINO <machino@vinelinux.org> 1.2.4-0vl1
123- new upstream version.
124
125* Thu Apr 30 2002 Satoshi MACHINO <machino@vinelinux.org> 1.2.3-0vl1
126- updated SDL_mixer-1.2.3
127- added BuildPreReq
128
129* Wed Jan 19 2000 Sam Lantinga
130- converted to get package information from configure
131* Sun Jan 16 2000 Hakan Tandogan <hakan@iconsult.com>
132- initial spec file
133
Note: See TracBrowser for help on using the repository browser.