Files
ccextractor/package_creators/ccextractor.spec
Carlos Fernandez 4a4911bcec chore: Bump version to 0.96.5
Update version number across all packaging and build files for the
0.96.5 release.

Files updated:
- docs/CHANGES.TXT - Added changelog entry
- src/lib_ccx/lib_ccx.h - VERSION define
- linux/configure.ac - AC_INIT version
- mac/configure.ac - AC_INIT version
- OpenBSD/Makefile - V variable
- package_creators/PKGBUILD - pkgver
- package_creators/ccextractor.spec - Version
- package_creators/debian.sh - VERSION
- packaging/chocolatey/ccextractor.nuspec - version
- packaging/chocolatey/tools/chocolateyInstall.ps1 - URL
- packaging/winget/*.yaml - PackageVersion and URLs

Note: SHA256 checksums in chocolatey and winget files will need to be
updated after the MSI is built.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-05 12:44:06 +01:00

40 lines
949 B
RPMSpec

Name: ccextractor
Version: 0.96.5
Release: 1
Summary: A closed captions and teletext subtitles extractor for video streams.
Group: Applications/Internet
License: GPL
URL: https://ccextractor.org/
Source0: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
%description
CCExtractor is a software that extracts closed captions from videos of various formats, even live video streams. Available as a multi-platform desktop application.
%global debug_package %{nil}
%prep
%setup -q
%build
./configure --enable-ocr --prefix="$pkgdir/usr"
make
%install
mkdir -p $RPM_BUILD_ROOT/usr/bin
install ccextractor $RPM_BUILD_ROOT/usr/bin/ccextractor
%files
%defattr(-,root,root)
/usr/bin/ccextractor
%clean
rm -rf $RPM_BUILD_ROOT
%changelog
* Thu Oct 5 2017 Jason Hancock <jason@jasonhancock.com>
- Install to /usr/bin instead of /usr/local/bin
* Fri Apr 14 2017 Carlos Fernandez <carlos@ccextractor.org>
- Initial build