mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
c6210f6aca
Included tools: ### download-gemist Can download a single episode from the episode URL. ### download-gemist-guide This fetches information from a program page. You can use it download multiple videos. WWW: http://code.arp242.net/download-gemist PR: ports/173567 Submitted by: Martin Tournoij <martin@arp242.net>
30 lines
633 B
Makefile
30 lines
633 B
Makefile
# Created by: Martin Tournoij <martin@arp242.net>
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= download-gemist
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= www python
|
|
MASTER_SITES= http://code.arp242.net/download-gemist/downloads/
|
|
|
|
MAINTAINER= martin@arp242.net
|
|
COMMENT= Download videos from the Dutch uitzending gemist site
|
|
|
|
LICENSE= MIT
|
|
|
|
USE_PYTHON= yes
|
|
NO_BUILD= yes
|
|
FETCH_ARGS= -Fpr
|
|
|
|
PLIST_DIRS= %%DOCSDIR%%
|
|
PLIST_FILES= bin/download-gemist \
|
|
bin/download-gemist-guide \
|
|
%%DOCSDIR%%/README.md
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/download-gemist* ${PREFIX}/bin/
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.md ${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|