fb1d43db73
for your podcast, based on MP3 tags. A webpage can either be automatically generated from scratch or generated from a template you create. An RSS feed is an XML file that is required to be listed in most popular podcast directories. Podcastamatic is highly customizable. PR: ports/83331 Submitted by: Lars Eggert <lars.eggert@gmx.net>
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# New ports collection makefile for: podcastamatic
|
|
# Date created: 12 July 2005
|
|
# Whom: lars.eggert@gmx.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= podcastamatic
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://bradley.chicago.il.us/projects/podcastamatic/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION:S/./_/}
|
|
|
|
MAINTAINER= lars.eggert@gmx.net
|
|
COMMENT= Automates creation of webpage and RSS feed for a podcast
|
|
|
|
RUN_DEPENDS= ${SITE_PERL}/MP3/Info.pm:${PORTSDIR}/audio/p5-MP3-Info
|
|
|
|
USE_ZIP= yes
|
|
USE_PERL5_RUN= yes
|
|
USE_REINPLACE= yes
|
|
|
|
NO_BUILD= yes
|
|
|
|
do-patch:
|
|
@${REINPLACE_CMD} -e "s|${PORTNAME}.conf|${PREFIX}/etc/${PORTNAME}.conf|"\
|
|
${WRKSRC}/${PORTNAME}.pl
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${PREFIX}/bin/${PORTNAME}
|
|
@${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf ${PREFIX}/etc/
|
|
@${MKDIR} ${PREFIX}/share/${PORTNAME}
|
|
@${INSTALL_DATA} ${WRKSRC}/style.css ${PREFIX}/share/${PORTNAME}/
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/readme.html ${DOCSDIR}
|
|
.endif
|
|
@${ECHO}
|
|
@${ECHO} "Edit ${PREFIX}/etc/${PORTNAME}.conf"
|
|
@${ECHO} "CSS in ${PREFIX}/share/${PORTNAME}/style.css"
|
|
@${ECHO}
|
|
|
|
.include <bsd.port.mk>
|