mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
b34caa2874
PR: ports/190318 Submitted by: Joseph Benden <joe at thrallingpenguin dot com>
30 lines
626 B
Makefile
30 lines
626 B
Makefile
# Created by: Kevin Lo <kevlo@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= phpmp
|
|
PORTVERSION= 0.12.0
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.bayofrum.net/dist/${PORTNAME}/
|
|
|
|
MAINTAINER= kevlo@FreeBSD.org
|
|
COMMENT= Web interface for music player daemon
|
|
|
|
LICENSE= GPLv2
|
|
|
|
NO_BUILD= yes
|
|
USE_PHP= pcre sockets
|
|
|
|
PHPMP?= ${WWWDIR_REL}
|
|
PLIST_SUB+= PHPMP=${PHPMP}
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/${PHPMP}
|
|
@${CP} -R ${WRKSRC}/ ${STAGEDIR}${PREFIX}/${PHPMP}
|
|
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${PREFIX}/${PHPMP}
|
|
@${CHMOD} -R 755 ${STAGEDIR}${PREFIX}/${PHPMP}
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|