mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
33a9c7db21
kPlaylist is a free PHP system that makes your music collection available via the Internet. kPlaylist is a music database that you manage via the web. With kPlaylist you can stream your music (ogg, mp3, wav, wma, etc.), you can upload, make playlists, share, search, download and a lot more.
36 lines
829 B
Makefile
36 lines
829 B
Makefile
# New ports collection makefile for: kplaylist
|
|
# Date created: 28 October 2010
|
|
# Whom: Kevin Lo <kevlo@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kplaylist
|
|
PORTVERSION= 1.8.505
|
|
CATEGORIES= www multimedia
|
|
MASTER_SITES= http://www.kplaylist.net/archive.php?file=1.8.505&tar=true/
|
|
DISTNAME= ${PORTNAME}.${PORTVERSION}
|
|
|
|
MAINTAINER= kevlo@FreeBSD.org
|
|
COMMENT= A PHP based music database
|
|
|
|
RUN_DEPENDS= lame:${PORTSDIR}/audio/lame \
|
|
oggenc:${PORTSDIR}/audio/vorbis-tools \
|
|
zip:${PORTSDIR}/archivers/zip
|
|
|
|
USE_PHP= curl mysql session iconv
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
WWWDIR?= ${PREFIX}/www/${PORTNAME}
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= %%WWWDIR%%/index.php
|
|
PLIST_DIRS= %%WWWDIR%%
|
|
|
|
do-install:
|
|
${MKDIR} ${WWWDIR}
|
|
@cd ${WRKSRC} && ${CP} kplaylist.1.8.505.php ${WWWDIR}/index.php
|
|
${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
|
|
|
|
.include <bsd.port.mk>
|