31 lines
612 B
Makefile
31 lines
612 B
Makefile
# $OpenBSD: Makefile,v 1.214 2020/11/05 11:15:24 sthen Exp $
|
|
|
|
COMMENT = CLI program to download videos from YouTube and other sites
|
|
|
|
VERSION = 2020.11.01.1
|
|
MODPY_EGG_VERSION = ${VERSION:S/.0/./g}
|
|
|
|
DISTNAME = youtube-dl-${VERSION}
|
|
CATEGORIES = www
|
|
|
|
HOMEPAGE = https://yt-dl.org
|
|
|
|
MAINTAINER = Paul Irofti <paul@irofti.net>
|
|
|
|
# Public Domain
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MASTER_SITES = https://youtube-dl.org/downloads/latest/
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_SETUPTOOLS = Yes
|
|
MODPY_PYTEST = Yes
|
|
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_3}
|
|
|
|
TEST_DEPENDS += devel/flake8
|
|
|
|
WRKDIST = ${WRKDIR}/youtube-dl
|
|
|
|
.include <bsd.port.mk>
|