libmpcdec-vl.spec 2.9 KB

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