481c501161
ChangeLog: https://github.com/morpheus65535/bazarr/releases/tag/v1.0.0 PR: 259168 Approved by: ygy (mentor) Differential Revision: https://reviews.freebsd.org/D32535
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
PORTNAME= bazarr
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.0.0
|
|
CATEGORIES= net-p2p python
|
|
MASTER_SITES= https://github.com/morpheus65535/bazarr/releases/download/${DISTVERSIONPREFIX}${DISTVERSION}/
|
|
DISTNAME= bazarr
|
|
DIST_SUBDIR= ${PORTNAME}/${DISTVERSION}
|
|
|
|
MAINTAINER= michiel@vanbaak.eu
|
|
COMMENT= Automatic subtitle downloader for Radarr and Sonarr
|
|
|
|
LICENSE= GPLv3
|
|
|
|
RUN_DEPENDS= ${PYNUMPY} \
|
|
${PYTHON_PKGNAMEPREFIX}gevent-websocket>=0.10.1:www/py-gevent-websocket@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}gevent>=21:devel/py-gevent@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}lxml>=4.3.0:devel/py-lxml@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}webrtcvad>=2.0.10:audio/py-webrtcvad@${PY_FLAVOR} \
|
|
ffprobe:multimedia/ffmpeg \
|
|
unrar:archivers/unrar
|
|
|
|
USES= python:3.7+ zip
|
|
|
|
USE_RC_SUBR= bazarr
|
|
|
|
SUB_LIST= PYTHON_CMD=${PYTHON_CMD} \
|
|
USERS=${USERS}
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
USERS= bazarr
|
|
GROUPS= bazarr
|
|
|
|
do-build:
|
|
@${PYTHON_CMD} -m compileall ${WRKSRC}
|
|
@${PYTHON_CMD} -O -m compileall ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL} -d -m 755 ${STAGEDIR}/${DATADIR}
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}/${DATADIR}
|
|
|
|
post-install:
|
|
@${FIND} -s ${STAGEDIR} -not -type d | ${SORT} | \
|
|
${SED} -e 's#^${STAGEDIR}${PREFIX}/##' >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.mk>
|