1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00
freebsd-ports/audio/mps/Makefile
Nicola Vitale 7e53606992 Terminal based MP3 search, playback and download.
- Search and stream music
 - Create playlists
 - Download music
 - Works with Python 2.7 and 3.x
 - Works with Windows, Linux and Mac OS X
 - No Python dependencies
 - Requires mplayer or mpv

WWW: http://github.com/np1/mps/
2014-04-09 00:26:00 +00:00

37 lines
740 B
Makefile

# Created by: Nicola Vitale <nivit@FreeBSD.org>
# $FreeBSD$
PORTNAME= mps
PORTVERSION= 0.20.06
#PORTREVISION= 0
CATEGORIES= audio
MASTER_SITES= CHEESESHOP
MAINTAINER= nivit@FreeBSD.org
COMMENT= Terminal based MP3 search, playback and download
LICENSE= GPLv3
OPTIONS_DEFAULT= MPLAYER
OPTIONS_RADIO= PLAYER
OPTIONS_RADIO_PLAYER= MPLAYER MPV
MPV_DESC= Mpv media player support
# This port installs the following files in shared dirs
# PLIST_FILES= bin/mps
PYDISTUTILS_AUTOPLIST= yes
USE_PYDISTUTILS= yes
USE_PYTHON= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MMPLAYER}
RUN_DEPENDS= mplayer:${PORTSDIR}/multimedia/mplayer
.elif ${PORT_OPTIONS:MMPV}
RUN_DEPENDS= mpv:${PORTSDIR}/multimedia/mpv
.endif
.include <bsd.port.mk>