gentoo-ebuilds/media-video/ccextractor/ccextractor-0.89.ebuild
Michał Górny 93b8ec20c5
media-*/*: update for virtual/zlib
Update done using:

```
git grep -l sys-libs/zlib media-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g
git diff --name-only | xargs copybump
git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead
pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error
```

Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-11-04 09:10:32 +01:00

34 lines
693 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Extract closed captioning subtitles from video to SRT"
HOMEPAGE="https://ccextractor.org/"
SRC_URI="https://github.com/CCExtractor/ccextractor/archive/v${PV}.tar.gz -> ${P}.tar.gz"
CMAKE_USE_DIR="${S}/src"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
BDEPEND="
app-arch/unzip
virtual/pkgconfig"
RDEPEND="
media-libs/libpng:0=
virtual/zlib:="
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${P}-libdir.patch"
"${FILESDIR}/${P}-cflags.patch"
"${FILESDIR}/${P}-cmake4.patch" # bug 953940
)
src_install() {
cmake_src_install
dodoc docs/*.TXT
}