forked from Lainports/freebsd-ports
Ruby 2.6 requires this gem port. ${PREFIX}/bin/irb installed by lang/ruby26
is just a wrapper script of this gem.
PR: 237870
Submitted by: myself
Differential Revision: https://reviews.freebsd.org/D20254
23 lines
361 B
Makefile
23 lines
361 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= irb
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= devel rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= meta@FreeBSD.org
|
|
COMMENT= Interactive Ruby
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
USES= gem
|
|
USE_RUBY= yes
|
|
|
|
NO_ARCH= yes
|
|
|
|
# irb executable is installed by ruby port
|
|
post-install:
|
|
${RM} ${STAGEDIR}${PREFIX}/bin/irb
|
|
|
|
.include <bsd.port.mk>
|