libmpcdec-vl.spec 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. Summary: Musepack audio decoding library
  2. Name: libmpcdec
  3. Version: 1.2.6
  4. Release: 1%{?_dist_release}
  5. License: BSD
  6. Group: System Environment/Libraries
  7. URL: http://www.musepack.net/
  8. Source0: http://files.musepack.net/source/libmpcdec-%{version}.tar.bz2
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  10. %description
  11. Musepack is an audio compression format with a strong emphasis on high quality.
  12. It's not lossless, but it is designed for transparency, so that you won't be
  13. able to hear differences between the original wave file and the much smaller
  14. MPC file.
  15. It is based on the MPEG-1 Layer-2 / MP2 algorithms, but has rapidly developed
  16. and vastly improved and is now at an advanced stage in which it contains
  17. heavily optimized and patentless code.
  18. %package devel
  19. Summary: Development files for the Musepack audio decoding library
  20. Group: Development/Libraries
  21. Requires: %{name} = %{version}-%{release}
  22. %description devel
  23. %{summary}.
  24. %prep
  25. %setup -q
  26. %build
  27. %configure --disable-static
  28. %__make %{?_smp_mflags}
  29. %install
  30. %__rm -rf $RPM_BUILD_ROOT
  31. %__make install DESTDIR=$RPM_BUILD_ROOT
  32. # remove unpackaged files
  33. %__rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  34. %clean
  35. %__rm -rf $RPM_BUILD_ROOT
  36. %post -p /sbin/ldconfig
  37. %postun -p /sbin/ldconfig
  38. %files
  39. %defattr(-,root,root,-)
  40. %doc AUTHORS ChangeLog COPYING README
  41. %{_libdir}/*.so.*
  42. %files devel
  43. %defattr(-,root,root,-)
  44. %{_includedir}/*
  45. %{_libdir}/*.so
  46. %changelog
  47. * Wed Jan 21 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.2.6-1
  48. - initial build
  49. * Fri Feb 08 2008 Rex Dieter <rdieter@fedoraproject.org> 1.2.6-4
  50. - respin (gcc43)
  51. * Sat Aug 25 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.2.6-3
  52. - respin (BuildID)
  53. * Wed Jun 06 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.2.6-2
  54. - fix %%files (docs/html is no more)
  55. * Wed Jun 06 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.2.6-1
  56. - libmpcdec-1.2.6
  57. * Tue Aug 29 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.2.2-4
  58. - fc6 respin
  59. * Wed Aug 09 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.2.2-3
  60. - fc6 respin
  61. * Sat Apr 01 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.2.2-2
  62. - License: BSD
  63. * Thu Jan 19 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.2.2-1
  64. - libmpcdec-1.2.2
  65. * Thu Jan 19 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.1-2
  66. - cleanup
  67. * Fri Jun 17 2005 Mihai Maties <mihai@xcyb.org> 1.1-1
  68. - update to 1.1
  69. - changed license to BSD
  70. - updated the spec to use autotools
  71. * Fri Nov 26 2004 Matthias Saou <http://freshrpms.net/> 1.0.2-1
  72. - Initial RPM release.
  73. - Include the mandatory copy of the LGPL (there is none in the sources...).