libass-vl.spec 3.5 KB

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