libass-vl.spec 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. Name: libass
  2. Version: 0.9.11
  3. Release: 1%{?_dist_release}
  4. Summary(ja): SSA/ASS 字幕レンダリングのためのライブラリ
  5. Summary: Portable library for SSA/ASS subtitles rendering
  6. Group: System Environment/Libraries
  7. License: GPLv2+
  8. URL: http://code.google.com/p/libass/
  9. Source0: http://libass.googlecode.com/files/%{name}-%{version}.tar.bz2
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  11. BuildRequires: libpng-devel
  12. BuildRequires: enca-devel
  13. BuildRequires: fontconfig-devel
  14. %description
  15. Libass is a portable library for SSA/ASS subtitles rendering.
  16. %package devel
  17. Summary: Development files for %{name}
  18. Group: Development/Libraries
  19. Requires: %{name} = %{version}-%{release}
  20. Requires: pkgconfig
  21. %description devel
  22. The %{name}-devel package contains libraries and header files for
  23. developing applications that use %{name}.
  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. find $RPM_BUILD_ROOT -name '*.la' -exec %__rm -f {} ';'
  33. %clean
  34. %__rm -rf $RPM_BUILD_ROOT
  35. %post -p /sbin/ldconfig
  36. %postun -p /sbin/ldconfig
  37. %files
  38. %defattr(-,root,root,-)
  39. %doc Changelog COPYING
  40. %{_libdir}/*.so.*
  41. %files devel
  42. %defattr(-,root,root,-)
  43. %{_includedir}/*
  44. %{_libdir}/*.so
  45. %{_libdir}/pkgconfig/libass.pc
  46. %changelog
  47. * Tue Feb 01 2011 Munehiro Yamamoto <munepi@vinelinux.org> - 0.9.11-1
  48. - initial build based on Fedora rawhide
  49. * Wed Sep 29 2010 jkeating - 0.9.11-2
  50. - Rebuilt for gcc bug 634757
  51. * Mon Sep 13 2010 Martin Sourada <mso@fedoraproject.org> - 0.9.11-1
  52. - Fixes rhbz #630432
  53. - New upstream release
  54. - Various fixes
  55. - Performance improvements
  56. - Calculate drawing bounding box like VSFilter
  57. - Better PAR correction if text transforms are used
  58. - Improved fullname font matching
  59. - Add ass_flush_events API function
  60. - Basic support for @font vertical text layout
  61. * Fri Jul 30 2010 Martin Sourada <mso@fedoraproject.org> - 0.9.9-1
  62. - Fixes rhbz #618733
  63. - New upstream release
  64. - Parse numbers in a locale-independent way
  65. - Disable script file size limit
  66. - Match fonts against the full name ("name for humans")
  67. - Reset clip mode after \iclip
  68. - Improve VSFilter compatibility
  69. - A couple of smaller fixes and cleanups
  70. * Sun Jan 10 2010 Martin Sourada <mso@fedoraproject.org> - 0.9.8-2
  71. - Fix source URL
  72. * Sun Oct 25 2009 Martin Sourada <mso@fedoraproject.org> - 0.9.8-1
  73. - New upstream release
  74. - See http://repo.or.cz/w/libass.git?a=blob;f=Changelog for changes
  75. * Mon Aug 10 2009 Martin Sourada <mso@fedoraproject.org> - 0.9.7-1
  76. - New upstream release
  77. - Upstream changed from sourceforge to code.google
  78. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-3
  79. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  80. * Tue Mar 24 2008 Martin Sourada <mso@fedoraproject.org> - 0.9.6-2
  81. - remove glibc-devel and freetype-devel BRs, they're already pulled in by the
  82. rest
  83. * Sun Mar 22 2008 Martin Sourada <mso@fedoraproject.org> - 0.9.6-1
  84. - update to newever version
  85. - drop %%doc from -devel
  86. - update source url to conform with fedora packaging guidelines
  87. * Sun Mar 22 2008 Martin Sourada <mso@fedoraproject.org> - 0.9.5-1
  88. - Initial rpm package