SDL_mixer.spec.in
上传用户:nini_0081
上传日期:2022-07-21
资源大小:2628k
文件大小:2k
源码类别:

多媒体编程

开发平台:

DOS

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