mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-02-04 05:44:53 +00:00
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>
22 lines
538 B
Bash
22 lines
538 B
Bash
pkgname=ccextractor
|
|
pkgver=0.96.5
|
|
pkgrel=1
|
|
pkgdesc="A closed captions and teletext subtitles extractor for video streams."
|
|
arch=('i686' 'x86_64')
|
|
url="https://www.ccextractor.org"
|
|
license=('GPL')
|
|
depends=('gcc-libs' 'tesseract' 'leptonica' 'ffmpeg' 'rust' 'clang')
|
|
source=(
|
|
https://github.com/CCExtractor/ccextractor/releases/download/v$pkgver/ccextractor_minimal.tar.gz
|
|
)
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname/linux"
|
|
./build_hardsubx
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname/linux"
|
|
install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
|
|
}
|