28d04b09e1
A high-level IO library that provides validation, type conversion, and more for command-line interfaces. HighLine also includes a complete menu system that can crank out anything from simple list selection to complete shells with just minutes of work.
31 lines
575 B
Makefile
31 lines
575 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/02/02 10:41:23 bernd Exp $
|
|
|
|
COMMENT= high-level IO library for Ruby
|
|
|
|
DISTNAME= highline-1.4.0
|
|
PKGNAME= ruby-${DISTNAME}
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://highline.rubyforge.org/
|
|
|
|
# Ruby license
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_RUBYFORGE:=highline/}
|
|
|
|
MODULES= lang/ruby
|
|
|
|
CONFIGURE_STYLE= ruby gem
|
|
|
|
PKG_ARCH= *
|
|
|
|
REGRESS_DEPENDS= ::devel/ruby-rake
|
|
|
|
do-regress:
|
|
@cd ${WRKBUILD} && ${LOCALBASE}/bin/rake test
|
|
|
|
.include <bsd.port.mk>
|