mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-07-08 18:06:30 +00:00
Update version number across all files: - src/lib_ccx/lib_ccx.h (main version define) - linux/configure.ac, mac/configure.ac (autoconf) - OpenBSD/Makefile - package_creators/ (PKGBUILD, ccextractor.spec, debian.sh) - packaging/winget/ (all yaml manifests) - packaging/chocolatey/ (nuspec and install script) Note: Checksums in winget/chocolatey will need to be updated when the actual release MSI is built. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
34 lines
814 B
Makefile
34 lines
814 B
Makefile
# $OpenBSD$
|
|
|
|
MAINTAINER = Marc Espie <espie@openbsd.org>
|
|
CATEGORIES = multimedia
|
|
COMMENT = closed caption subtitles extractor
|
|
HOMEPAGE = https://ccextractor.org
|
|
V = 0.96.3
|
|
DISTFILES = ccextractor.${V:S/.//}-src.zip
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=ccextractor/}
|
|
DISTNAME = ccextractor-$V
|
|
WRKDIST = ${WRKDIR}/ccextractor.$V
|
|
WRKSRC = ${WRKDIST}/src
|
|
|
|
# GPL 2.0
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
|
|
DOCDIR = ${PREFIX}/share/doc/ccextractor
|
|
do-configure:
|
|
ln -s ${FILESDIR}/Makefile ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/ccextractor ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
for i in ${WRKDIST}/docs/*.TXT; do \
|
|
${INSTALL_DATA} $$i ${DOCDIR}; \
|
|
done
|
|
|
|
WANTLIB += c m stdc++
|
|
|
|
.include <bsd.port.mk>
|