0a4ee39c3c
Pod::ToDemo allows you to write POD-only modules that serve as tutorials which can write out demo programs if you invoke them directly. That is, while SDL::Tutorial is a tutorial on writing beginner SDL applications with Perl, you can invoke it as: $ perl -MSDL::Tutorial=sdl_demo.pl -e 1 and it will write a bare-bones demo program called sdl_demo.pl based on the tutorial.
21 lines
444 B
Makefile
21 lines
444 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/06/02 21:42:42 sthen Exp $
|
|
|
|
COMMENT = Write a demo program from a tutorial POD
|
|
|
|
MODULES = cpan
|
|
DISTNAME = Pod-ToDemo-1.01
|
|
CATEGORIES = devel
|
|
CPAN_AUTHOR = CHROMATIC
|
|
|
|
MAINTAINER = James Wright <jamesw@bsdhosting.co.za>
|
|
|
|
# Perl
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
REGRESS_DEPENDS = ::devel/p5-Test-Exception
|
|
|
|
.include <bsd.port.mk>
|