mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
d62eea7d53
package. Specifically, Wirble adds a saved history, a couple of useful shortcuts, and color to Irb. Wirble also enables a Irb's built-in tab-completion and a simpler prompt. Author: Paul Duncan <pabs@pablotron.org> WWW: http://pablotron.org/software/wirble/ PR: ports/107679 Submitted by: Christopher Boumenot <boumenot at gmail.com>
36 lines
685 B
Makefile
36 lines
685 B
Makefile
# New ports collection makefile for: ruby-lafcadio
|
|
# Date created: 09 Jan 2007
|
|
# Whom: Christopher Boumenot <boumenot@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= wirble
|
|
PORTVERSION= 0.1.2
|
|
CATEGORIES= devel ruby
|
|
MASTER_SITES=http://pablotron.org/files/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= boumenot@gmail.com
|
|
COMMENT= A set of enhancements of irb
|
|
|
|
DOCS_EN= README
|
|
|
|
USE_RUBY= yes
|
|
|
|
do-build:
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/wirble.rb ${RUBY_SITELIBDIR}/
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${RUBY_MODDOCDIR}
|
|
.for f in ${DOCS_EN}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|