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

Revision 8073, 5.0 KB checked in by Takemikaduchi, 10 years ago (diff)

new upstream release or rebuild

Line 
1Summary: Simple DirectMedia Layer - Sample Mixer Library
2Name:    SDL_mixer
3Version: 1.2.12
4Release: 3%{?_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: flac-devel
11BuildRequires: sane
12BuildRequires: libtool
13BuildRequires: automake
14BuildRequires: autoconf
15BuildRequires: libvorbis-devel
16BuildRequires: libogg-devel
17BuildRequires: libmikmod-devel
18BuildRequires: audiofile-devel
19Requires: libmikmod
20Requires: libvorbis
21Requires: libogg
22
23Vendor: Project Vine
24Distribution: Vine Linux
25
26%description
27Due to popular demand, here is a simple multi-channel audio mixer.
28It supports 4 channels of 16 bit stereo audio, plus a single channel
29of music, mixed by the popular MikMod MOD, Timidity MIDI and SMPEG MP3
30libraries.
31
32%description -l ja
33これはシンプルなマルチチャンネルなオーディオミキサーです。
344チャンネルの16 bit ステレオオーディオ+一般的な MikMod MOD、
35Timidity MIDI や SMPEG MP3 ライブラリによって
36ミックスされた1チャンネルの音楽をサポートします。
37
38%package devel
39Summary: Libraries, includes and more to develop SDL applications.
40Group: Development/Libraries
41Requires: %{name} = %{version}
42
43%description devel
44Due to popular demand, here is a simple multi-channel audio mixer.
45It supports 4 channels of 16 bit stereo audio, plus a single channel
46of music, mixed by the popular MikMod MOD, Timidity MIDI and SMPEG MP3
47libraries.
48
49%description devel -l ja
50これはシンプルなマルチチャンネルなオーディオミキサーです。
514チャンネルの16 bit ステレオオーディオ+一般的な MikMod MOD、
52Timidity MIDI や SMPEG MP3 ライブラリによって
53ミックスされた1チャンネルの音楽をサポートします。
54
55%prep
56%setup -q
57
58%build
59%configure --disable-dependency-tracking \
60           --disable-static \
61           --enable-music-mod
62make %{?_smp_mflags} LDFLAGS=-lm
63
64%install
65rm -rf $RPM_BUILD_ROOT
66make install DESTDIR=$RPM_BUILD_ROOT
67
68# installed binary
69%__mkdir_p $RPM_BUILD_ROOT%{_bindir}
70/bin/sh ./libtool  --mode=install /usr/bin/install -c build/playmus \
71$RPM_BUILD_ROOT%{_bindir}
72/bin/sh ./libtool  --mode=install /usr/bin/install -c build/playwave \
73$RPM_BUILD_ROOT%{_bindir}
74
75rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
76
77%clean
78rm -rf $RPM_BUILD_ROOT
79
80%post -p /sbin/ldconfig
81
82%postun -p /sbin/ldconfig
83
84%files
85%defattr(-,root,root)
86%doc README CHANGES COPYING
87%{_bindir}/playmus
88%{_bindir}/playwave
89%{_libdir}/lib*.so.*
90
91%files devel
92%defattr(-,root,root,-)
93%{_libdir}/lib*.so
94%{_libdir}/pkgconfig/%{name}.pc
95%{_includedir}/SDL
96
97%changelog
98* Sun Dec 29 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.12-3
99- rebuild with VineSeed environment
100
101* Mon Aug 20 2012 IWAI, Masaharu <iwai@alib.jp> 1.2.12-2
102- drop BR: smpeg-devel
103
104* Sun Jun 24 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.12-1
105- new upstream release
106- change BuildRequires: libmikmod-devel instead of mikmod-devel
107
108* Sat Jun 18 2011 Kazutaka HARADA <kazutaka@vinelinux.org> 1.2.11-3
109- rebuild for Vine Linux
110- add BuildRequires: smpeg-devel, mikmod-devel and audiofile-devel
111- change configure option to --enable-music-mod
112  (--enable-music-libmikmod is obsoleted)
113
114* Tue Dec 28 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.11-2
115- rebuild with rpm-4.8.1
116
117* Sat Sep 18 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.2.11-1
118- new upstream release
119- added BuildRequires: flac-devel
120- added Requires: libmikmod
121- added configure option
122  --disable-dependency-tracking
123  --disable-static
124  --enable-music-libmikmod
125- used make %{?_smp_mflags} LDFLAGS=-lm
126
127* Sun Sep 21 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.2.8-1
128- applied new versioning policy
129- spec in UTF-8
130
131* Tue Oct 30 2007 Shu KONNO <owa@bg.wakwak.com> 1.2.8-0vl2
132- added Requires: smpeg
133
134* Sun Sep 02 2007 Shu KONNO <owa@bg.wakwak.com> 1.2.8-0vl1
135- update SDL_mixer to 1.2.8
136- dropt BuildPreReq: smpeg-devel
137- dropt Requires: smpeg
138
139* Mon Jan 15 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.2.7-0vl1
140- new upstream release
141- added %post and %postun section
142
143* Mon Mar 21 2005 Satoshi MACHINO <machino@vinelinux.org> 1.2.6-0vl2
144- fixed included devel package
145
146* Sat Mar 19 2005 Satoshi MACHINO <machino@vinelinux.org> 1.2.6-0vl1
147- new upstream release
148- enabled music-ogg, music-mp3
149
150* Mon Oct 11 2004 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.2.5-0vl3
151- rebuilt without alsa
152
153* Wed May 05 2004 Satoshi MACHINO <machino@vinelinux.org> 1.2.5-0vl2
154- added japanese description
155- built by SDL-1.2.7
156 
157* Sun May 11 2003 Satoshi MACHINO <machino@vinelinux.org> 1.2.5-0vl1
158- new upstram version
159- used rpmmacros
160
161* Tue Jul 02 2002 Satoshi MACHINO <machino@vinelinux.org> 1.2.4-0vl1
162- new upstream version.
163
164* Tue Apr 30 2002 Satoshi MACHINO <machino@vinelinux.org> 1.2.3-0vl1
165- updated SDL_mixer-1.2.3
166- added BuildPreReq
167
168* Wed Jan 19 2000 Sam Lantinga
169- converted to get package information from configure
170* Sun Jan 16 2000 Hakan Tandogan <hakan@iconsult.com>
171- initial spec file
172
Note: See TracBrowser for help on using the repository browser.