libebml-vl.spec 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. Summary: Extensible Binary Meta Language library
  2. Name: libebml
  3. Version: 0.7.8
  4. Release: 1%{?_dist_release}
  5. License: LGPL
  6. Group: System Environment/Libraries
  7. URL: http://www.matroska.org/
  8. Source: http://dl.matroska.org/downloads/libebml/libebml-%{version}.tar.bz2
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  10. %description
  11. Extensible Binary Meta Language access library A library for reading
  12. and writing files with the Extensible Binary Meta Language, a binary
  13. pendant to XML.
  14. %package devel
  15. Summary: Development files for the Extensible Binary Meta Language library
  16. Group: Development/Libraries
  17. Requires: %{name} = %{version}-%{release}
  18. %description devel
  19. Extensible Binary Meta Language access library A library for reading
  20. and writing files with the Extensible Binary Meta Language, a binary
  21. pendant to XML.
  22. This package contains the files required to rebuild applications which
  23. will use the Extensible Binary Meta Language library.
  24. %prep
  25. %setup -q
  26. %build
  27. CXXFLAGS="$RPM_OPT_FLAGS" make -C make/linux %{?_smp_mflags}
  28. %install
  29. rm -rf $RPM_BUILD_ROOT
  30. make -C make/linux \
  31. prefix=$RPM_BUILD_ROOT%{_prefix} \
  32. libdir=$RPM_BUILD_ROOT%{_libdir} \
  33. install
  34. # Needed for proper stripping of the library (still in 0.7.6)
  35. chmod +x $RPM_BUILD_ROOT%{_libdir}/libebml.so.*
  36. %clean
  37. rm -rf $RPM_BUILD_ROOT
  38. %post -p /sbin/ldconfig
  39. %postun -p /sbin/ldconfig
  40. %files
  41. %defattr(-,root,root,0755)
  42. %doc ChangeLog LICENSE.LGPL
  43. %{_libdir}/libebml.so.*
  44. %files devel
  45. %defattr(-,root,root,0755)
  46. %{_includedir}/ebml/
  47. %{_libdir}/libebml.a
  48. %{_libdir}/libebml.so
  49. %changelog
  50. * Mon Sep 22 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.7.8-1
  51. - new upstream release
  52. - applied new versioning policy
  53. * Sun May 20 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.7.7-1vl2
  54. - rebuilt with new toolchain
  55. * Tue Aug 8 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.7.7-1vl1
  56. - inital build for Vine Linux
  57. * Wed Apr 12 2006 Dams <anvil[AT]livna.org> - 0.7.7-1
  58. - Updated to 0.7.7
  59. * Thu Mar 16 2006 Dams <anvil[AT]livna.org> - 0.7.6-2.fc5
  60. - Release bump
  61. * Tue Nov 29 2005 Matthias Saou <http://freshrpms.net/> 0.7.6-1
  62. - Update to 0.7.6.
  63. - Change URL to the project's one.
  64. - Add a full description for the devel package.
  65. - Some other minor spec file changes.
  66. * Sun Jun 5 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.5-2
  67. - Split development files into a devel subpackage.
  68. - Run ldconfig at post (un)install time.
  69. - Fix shared library file modes.
  70. * Wed May 25 2005 Jeremy Katz <katzj@redhat.com> - 0.7.5-1
  71. - update to 0.7.5 (fixes x86_64 build)
  72. - incldue shared libs
  73. * Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 0.7.3-3
  74. - rebuild on all arches
  75. * Sun Feb 27 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.3-2
  76. - 0.7.3.
  77. * Wed Nov 10 2004 Matthias Saou <http://freshrpms.net/> 0.7.2-2
  78. - Update to 0.7.2.
  79. - Bump release to provide Extras upgrade path.
  80. * Sun Aug 29 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.7.1-0.fdr.1
  81. - Update to 0.7.1.
  82. - Honor $RPM_OPT_FLAGS.
  83. * Mon Jul 12 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.7.0-0.fdr.1
  84. - Update to 0.7.0.
  85. - Improved 64-bit arch build fix.
  86. * Wed May 19 2004 Justin M. Forbes <64bit_fedora@comcast.net> 0:0.6.5-0.fdr.2
  87. - Change linux makefile to use lib64 ifarch x86_64 for sane build
  88. * Sun Apr 4 2004 Dams <anvil[AT]livna.org> 0:0.6.5-0.fdr.1
  89. - Updated to 0.6.5
  90. * Sun Feb 29 2004 Dams <anvil[AT]livna.org> 0:0.6.4-0.fdr.2
  91. - Added licenses file as doc
  92. * Thu Sep 4 2003 Dams <anvil[AT]livna.org>
  93. - Initial build.