00f7dcf7ca
This module is a quick and dirty way to determine if a cron time format is valid for the current date and time. A cron entry follows the cron format from crontab(5). The validate_time function uses the current date and time for comparison, but will also accept a valid DateTime object as a parameter.
21 lines
437 B
Makefile
21 lines
437 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/06/26 09:36:09 bernd Exp $
|
|
|
|
COMMENT= "parse a cron entry and check against current time"
|
|
|
|
DISTNAME= DateTime-Cron-Simple-0.2
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
|
|
# Artistic
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DateTime/}
|
|
|
|
CONFIGURE_STYLE= perl
|
|
PKG_ARCH= *
|
|
|
|
.include <bsd.port.mk>
|