mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
4a7b921112
PR: 141665 Submitted by: Julian Dunn <jdunn@aquezada.com> (maintainer)
44 lines
1.0 KiB
Makefile
44 lines
1.0 KiB
Makefile
# New ports collection makefile for: ttytter
|
|
# Date created: 21 March 2009
|
|
# Whom: Julian C. Dunn <jdunn@aquezada.com>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ttytter
|
|
PORTVERSION= 0.9.10
|
|
CATEGORIES= net-im
|
|
MASTER_SITES= http://www.floodgap.com/software/ttytter/
|
|
DISTFILES= ${PORTNAME}.txt
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= jdunn@aquezada.com
|
|
COMMENT= Command-line Twitter client in Perl
|
|
|
|
RUN_DEPENDS= ${SITE_PERL}/Date/Parse.pm:${PORTSDIR}/devel/p5-TimeDate \
|
|
curl:${PORTSDIR}/ftp/curl
|
|
|
|
NO_BUILD= yes
|
|
USE_PERL5_RUN= yes
|
|
|
|
OPTIONS= READLINE "Include rich readline support" on
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_READLINE)
|
|
RUN_DEPENDS+= ${SITE_PERL}/Term/ReadLine/Perl.pm:${PORTSDIR}/devel/p5-ReadLine-Perl
|
|
.endif
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@${CP} ${DISTDIR}/${PORTNAME}.txt ${WRKSRC}/${PORTNAME}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^\#!/usr/bin/perl|\#!${PERL}|' ${WRKSRC}/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
.include <bsd.port.post.mk>
|