260731b65c
This module is an implementation of the "Promise/A+" pattern for asynchronous programming. Promises are meant to be a way to better deal with the resulting callback spaghetti that can often result in asynchronous programs.
18 lines
324 B
Makefile
18 lines
324 B
Makefile
# Created by: Tom Judge <tj@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Promises
|
|
PORTVERSION= 0.94
|
|
CATEGORIES= lang perl5
|
|
MASTER_SITES= CPAN
|
|
MASTER_SITE_SUBDIR= CPAN:STEVAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= tj@FreeBSD.org
|
|
COMMENT= An implementation of the Promise/A+ pattern
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
.include <bsd.port.mk>
|