forked from Lainports/freebsd-ports
When 'time' is required, Time is extended with additional methods for parsing and converting Times. This library extends the Time class with the following conversions between date strings and Time objects: - date-time defined by RFC 2822 - HTTP-date defined by RFC 2616. - dateTime defined by XML Schema Part 2: Datatypes (ISO 8601) - various formats handled by Date._parse - custom formats handled by Date._strptime WWW: https://github.com/ruby/time
21 lines
401 B
Makefile
21 lines
401 B
Makefile
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= time
|
|
PORTVERSION= 0.1.0
|
|
CATEGORIES= devel rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Extend the Time class with methods for parsing and conversion
|
|
|
|
LICENSE= BSD2CLAUSE RUBY
|
|
LICENSE_COMB= dual
|
|
LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt
|
|
|
|
USES= gem
|
|
USE_RUBY= yes
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|