123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- Name: libass
- Summary(ja): SSA/ASS 字幕レンダリングのためのライブラリ
- Summary: Portable library for SSA/ASS subtitles rendering
- Version: 0.15.1
- Release: 1%{?_dist_release}
- Group: system
- Vendor: Project Vine
- Distribution: Vine Linux
- License: GPLv2+
- URL: https://github.com/libass/libass
- Source0: https://github.com/libass/libass/releases/download/%{version}/%{name}-%{version}.tar.xz
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildRequires: libpng-devel
- BuildRequires: enca-devel
- BuildRequires: fontconfig-devel
- BuildRequires: fribidi-devel
- BuildRequires: harfbuzz-devel
- %description
- Libass is a portable library for SSA/ASS subtitles rendering.
- %package devel
- Summary: Development files for %{name}
- Group: programming
- Requires: %{name} = %{version}-%{release}
- Requires: pkgconfig
- %description devel
- The %{name}-devel package contains libraries and header files for
- developing applications that use %{name}.
- %debug_package
- %prep
- %setup -q
- %build
- %configure --disable-static
- %__make %{?_smp_mflags}
- %install
- %__rm -rf $RPM_BUILD_ROOT
- %__make install DESTDIR=$RPM_BUILD_ROOT
- find $RPM_BUILD_ROOT -name '*.la' -exec %__rm -f {} ';'
- %clean
- %__rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-,root,root,-)
- %license COPYING
- %doc Changelog
- %{_libdir}/*.so.*
- %files devel
- %defattr(-,root,root,-)
- %{_includedir}/*
- %{_libdir}/*.so
- %{_libdir}/pkgconfig/libass.pc
- %changelog
- * Thu Jul 29 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 0.15.1-1
- - new upstream release.
- * Tue Mar 09 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 0.15.0-1
- - new upstream release.
- - dropped scriptlets.
- * Mon May 18 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 0.14.0-1
- - new upstream release.
- * Sun Apr 15 2018 Daisuke SUZUKI <daisuke@vinelinux.org> 0.13.4-1
- - new upstream release
- * Wed Jan 09 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.10.1-1
- - new upstream release
- - add BuildRequires: fribidi-devel, harfbuzz-devel
- * Tue Feb 01 2011 Munehiro Yamamoto <munepi@vinelinux.org> - 0.9.11-1
- - initial build based on Fedora rawhide
- * Wed Sep 29 2010 jkeating - 0.9.11-2
- - Rebuilt for gcc bug 634757
- * Mon Sep 13 2010 Martin Sourada <mso@fedoraproject.org> - 0.9.11-1
- - Fixes rhbz #630432
- - New upstream release
- - Various fixes
- - Performance improvements
- - Calculate drawing bounding box like VSFilter
- - Better PAR correction if text transforms are used
- - Improved fullname font matching
- - Add ass_flush_events API function
- - Basic support for @font vertical text layout
- * Fri Jul 30 2010 Martin Sourada <mso@fedoraproject.org> - 0.9.9-1
- - Fixes rhbz #618733
- - New upstream release
- - Parse numbers in a locale-independent way
- - Disable script file size limit
- - Match fonts against the full name ("name for humans")
- - Reset clip mode after \iclip
- - Improve VSFilter compatibility
- - A couple of smaller fixes and cleanups
- * Sun Jan 10 2010 Martin Sourada <mso@fedoraproject.org> - 0.9.8-2
- - Fix source URL
- * Sun Oct 25 2009 Martin Sourada <mso@fedoraproject.org> - 0.9.8-1
- - New upstream release
- - See http://repo.or.cz/w/libass.git?a=blob;f=Changelog for changes
- * Mon Aug 10 2009 Martin Sourada <mso@fedoraproject.org> - 0.9.7-1
- - New upstream release
- - Upstream changed from sourceforge to code.google
- * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Mon Mar 24 2008 Martin Sourada <mso@fedoraproject.org> - 0.9.6-2
- - remove glibc-devel and freetype-devel BRs, they're already pulled in by the
- rest
- * Sat Mar 22 2008 Martin Sourada <mso@fedoraproject.org> - 0.9.6-1
- - update to newever version
- - drop %%doc from -devel
- - update source url to conform with fedora packaging guidelines
- * Sat Mar 22 2008 Martin Sourada <mso@fedoraproject.org> - 0.9.5-1
- - Initial rpm package
|