c35bd9a5e6
SoundScrape makes it super easy to download artists from SoundCloud, Bandcamp and MixCloud. It automatically creates ID3 tags as well (including album art), which is handy. WWW: https://github.com/Miserlou/SoundScrape Reviewed by: koobs Differential Revision: https://reviews.freebsd.org/D11049
32 lines
1,000 B
Makefile
32 lines
1,000 B
Makefile
# Created by: Carlos J. Puga Medina <cpm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= soundscrape
|
|
PORTVERSION= 0.30.0
|
|
CATEGORIES= audio python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= cpm@FreeBSD.org
|
|
COMMENT= SoundCloud downloader in python
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mutagen>=1.31.0:audio/py-mutagen \
|
|
${PYTHON_PKGNAMEPREFIX}soundcloud>=0.4.1:audio/py-soundcloud \
|
|
${PYTHON_PKGNAMEPREFIX}args>=0.1.0:devel/py-args \
|
|
${PYTHON_PKGNAMEPREFIX}clint>=0.3.2:devel/py-clint \
|
|
${PYTHON_PKGNAMEPREFIX}demjson>=2.2.2:devel/py-demjson \
|
|
${PYTHON_PKGNAMEPREFIX}fudge>=1.0.3:devel/py-fudge \
|
|
${PYTHON_PKGNAMEPREFIX}nose>=1.3.7:devel/py-nose \
|
|
${PYTHON_PKGNAMEPREFIX}simplejson>=3.3.1:devel/py-simplejson \
|
|
${PYTHON_PKGNAMEPREFIX}wheel>=0.24.0:devel/py-wheel \
|
|
${PYTHON_PKGNAMEPREFIX}requests>=2.9.0:www/py-requests
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|