4d74a0a7ab
home_run is an implementation of ruby's Date/DateTime classes in C, with much better performance (20-200x) than the version in the standard library, while being almost completely compatible.
28 lines
658 B
Makefile
28 lines
658 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/12/20 18:06:38 jeremy Exp $
|
|
|
|
COMMENT = fast Date/DateTime classes for ruby
|
|
|
|
DISTNAME = home_run-0.9.4
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE= http://github.com/jeremyevans/home_run
|
|
|
|
MAINTAINER = Jeremy Evans <jeremy@openbsd.org>
|
|
|
|
# MIT License
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MODULES = lang/ruby
|
|
|
|
CONFIGURE_STYLE = ruby gem ext
|
|
REGRESS_DEPENDS = devel/ruby-mspec,${MODRUBY_FLAVOR} \
|
|
${FULLPKGNAME}:${BUILD_PKGPATH}
|
|
MODRUBY_REGRESS = rake
|
|
do-regress:
|
|
cd ${WRKSRC} && RUBY=${RUBY} RUBYLIB=$$(dirname `${GEM} which date_ext`) rake
|
|
|
|
.include <bsd.port.mk>
|