SHA256
1
0
forked from pool/aegisub
aegisub/aegisub.spec
Stephan Barth f8400e0230 Accepting request 243924 from home:sfalken:branches:multimedia:apps
- Removed old tarball aegisub-3.1.3.tar.xz 

- Updated to 3.2.0
  * Audio caching is now done in the background rather than popping up a modal progress dialog 
  * The audio display is automatically scrolled to the active line when audio is first opened (if that option is enabled)
  * Drag all selected lines when Alt is held down when dragging in the audio display
  * Automation now uses LuaJIT in Lua 5.2 mode rather than Lua 5.1
  * Text controls are "infinite" length rather than limited to 30k bytes
  * subs.delete can be passed a table of row numbers to delete
  * Add the luabins and lfs libraries to the automation environment
  * Filter out redundant progress updates so that they don't make everything incredibly slow
  * Add support for submenus in the automation menu (insert / in the macro name)
  * Add unicode case conversion functions to the automation module (unicode.to_upper_case, unicode.to_lower_case, unicode.to_fold_case)
  * Only process selected lines in the Select Overlaps macro if more than one line is selected
  * Add aegisub.project_properties() to get a table with stuff that used to be in the script info section of the file (but unlike the old script info entries, it's actually always up to date)
  * Fix loading automation scripts when Aegisub is installed to a path with non-ascii characters in it
  * Lua functions which take a path have been patched to support UTF-8 on Windows   
  * Add a warning when a script using a bold or italic variant of a font that doesn't actually exist, as emboldening done by the renderer may not match what is seen in Aegisub
  * Make the installer translatable and use the language selected in the installer for Aegisub's UI language
  * Fix locale issues that could lead to find/replace stripping all non-ascii characters from a file
  * Use localized names for languages everywhere they're displayed rather than the English names
  * Make fontconfig indexing about four times as fast
  * Significantly speed up passing subtitles to the subtitle renderer (as much as 10x faster), making the video display less laggy with large files
  * Speed up indexing Matroska files
  * Significantly speed up reading subtitles from Matroska files
  * Cut idle CPU usage when Aegisub is in the background by about 90%
  * Cut down the disk space used a bit
  * Resample \be and \blur tags
  * Add support for converting between YCbCr matricies
  * Make the handling for AR-changing resampling a bit smarter

OBS-URL: https://build.opensuse.org/request/show/243924
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/aegisub?expand=0&rev=19
2014-08-13 07:27:14 +00:00

91 lines
3.0 KiB
RPMSpec

#
# spec file for package aegisub
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%bcond_with ffms2
Name: aegisub
Version: 3.2.0
Release: 0
Summary: Subtitle editor
License: BSD-3-Clause
Group: Productivity/Multimedia/Video/Editors and Convertors
Url: http://www.aegisub.net/
Source0: http://ftp.aegisub.org/pub/releases/aegisub-%{version}.tar.xz
Patch0: aegisub-old_wc.patch
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: boost-devel >= 1.50
BuildRequires: gcc-c++
BuildRequires: intltool
BuildRequires: pkg-config >= 0.20
%define _use_internal_dependency_generator 0
%define __find_requires %wx_requires
BuildRequires: wxWidgets-devel >= 2.9.5
BuildRequires: pkgconfig(alsa)
BuildRequires: pkgconfig(fftw3) >= 3.3
BuildRequires: pkgconfig(fontconfig) >= 2.4
BuildRequires: pkgconfig(gl)
BuildRequires: pkgconfig(hunspell) >= 1.2.0
BuildRequires: pkgconfig(libass)
BuildRequires: pkgconfig(libpulse) >= 0.5
BuildRequires: pkgconfig(lua) < 5.2
BuildRequires: pkgconfig(lua) >= 5.1
BuildRequires: pkgconfig(zlib)
%if %{with ffms2}
BuildRequires: pkgconfig(ffms2)
%endif
%description
Aegisub is an advanced subtitle editor for Windows, and UNIX-like systems, such
as Linux, Mac OS X and BSD. It is open source software and free for any use.
Aegisub natively works with the Advanced SubStation Alpha format (aptly
abbreviated ASS) which allows for many advanced effects in the subtitles, apart
from just basic timed text. Aegisub's goal is to support using these advanced
functions with ease.
%prep
%setup -q
%patch0 -p1
FAKE_BUILDDATE=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%b %%e %%Y')
sed -i "s/__DATE__/\"$FAKE_BUILDDATE\"/" src/version.cpp
FAKE_BUILDTIME=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%H:%%M:%%S')
sed -i "s/__TIME__/\"$FAKE_BUILDTIME\"/" src/version.cpp
%build
autoreconf -fi
# Don't use --disable-update-checker because of http://blog.aegisub.org/2012/02/bit-of-statistics.html
%configure --with-player-audio=PulseAudio \
--without-oss
# parallel make takes too much memory
make -j1
%install
%make_install
%find_lang %{name}-32
%files -f %{name}-32.lang
%defattr(0644, root, root, 0755)
%doc LICENCE
%attr(0755,root,root) %{_bindir}/aegisub-3.2
%{_datadir}/aegisub/
%{_datadir}/applications/aegisub.desktop
%{_datadir}/icons/hicolor/*/apps/aegisub.*
%changelog