mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
2ed5aceee1
PR: 144816 Submitted by: ports@c0decafe.net Approved by: maintainer
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# New ports collection makefile for: ttytter
|
|
# Date created: 21 March 2009
|
|
# Whom: Julian C. Dunn <jdunn@aquezada.com>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ttytter
|
|
PORTVERSION= 1.0.1
|
|
CATEGORIES= net-im
|
|
MASTER_SITES= http://www.floodgap.com/software/ttytter/dist1/
|
|
DISTFILES= 1.0.01.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}/${DISTFILES} ${WRKSRC}/${PORTNAME}-${PORTVERSION}.txt
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^\#!/usr/bin/perl|\#!${PERL}|' ${WRKSRC}/${PORTNAME}-${PORTVERSION}.txt
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}-${PORTVERSION}.txt ${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.post.mk>
|