52695de42a
Changes: https://github.com/mikf/gallery-dl/releases/tag/v1.26.2 Reported by: GitHub (watch releases)
32 lines
914 B
Makefile
32 lines
914 B
Makefile
PORTNAME= gallery-dl
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.26.2
|
|
CATEGORIES= www
|
|
|
|
# Implicit approval to commit trivial version updates.
|
|
MAINTAINER= jbeich@FreeBSD.org
|
|
COMMENT= Command-line program to download image galleries and collections
|
|
WWW= https://github.com/mikf/gallery-dl
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}requests>=2.11.0:www/py-requests@${PY_FLAVOR}
|
|
|
|
NO_ARCH= yes
|
|
USES= python
|
|
USE_GITHUB= yes
|
|
USE_PYTHON= autoplist distutils unittest
|
|
GH_ACCOUNT= mikf
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's,/etc,${PREFIX}&,' \
|
|
${WRKSRC}/gallery_dl/config.py \
|
|
${WRKSRC}/scripts/man.py
|
|
|
|
post-build:
|
|
# USE_GITHUB archive doesn't have generated files
|
|
@${DO_MAKE_BUILD} -C ${BUILD_WRKSRC} PYTHON="${PYTHON_CMD}" man completion
|
|
|
|
.include <bsd.port.mk>
|