1e755cb921
For the theory of Memoization, please see the Memoize module documentation. This module implements an expiry policy for Memoize that follows LRU semantics, that is, the last n results, where n is specified as the argument to the CACHESIZE parameter, will be cached.
19 lines
387 B
Makefile
19 lines
387 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/04/06 09:25:46 sthen Exp $
|
|
|
|
COMMENT= expiry plug-in for Memoize that adds LRU cache expiration
|
|
|
|
DISTNAME= Memoize-ExpireLRU-0.55
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= Andrew Fresh <andrew@cpan.org>
|
|
|
|
# Same as Perl
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODULES= cpan
|
|
|
|
.include <bsd.port.mk>
|