mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
e43ae6e65e
phpMp is a web interface for Music Player Daemon (MPD) which allows remote control of MPD. For example, to control a housewide stereo system from multiple locations.
30 lines
618 B
Makefile
30 lines
618 B
Makefile
# New ports collection makefile for: phpmp
|
|
# Date created: 2007-02-27
|
|
# Whom: Kevin Lo <kevlo@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= phpmp
|
|
PORTVERSION= 0.11.0
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://mercury.chem.pitt.edu/~shank/
|
|
DISTNAME= phpMp-${PORTVERSION}
|
|
|
|
MAINTAINER= kevlo@FreeBSD.org
|
|
COMMENT= A web interface for music player daemon
|
|
|
|
NO_BUILD= YES
|
|
USE_PHP= sockets
|
|
|
|
PHPMP?= www/phpmp
|
|
PLIST_SUB+= PHPMP=${PHPMP}
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/${PHPMP}
|
|
@${CP} -R ${WRKSRC}/ ${PREFIX}/${PHPMP}
|
|
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${PHPMP}
|
|
@${CHMOD} -R 755 ${PREFIX}/${PHPMP}
|
|
|
|
.include <bsd.port.mk>
|