d00550f237
"Module::Build" is a system for building, testing, and installing Perl modules. It is meant to be a replacement for "ExtUtils::MakeMaker". Developers may alter the behavior of the module through subclassing in a much more straightforward way than with "MakeMaker". It also does not require a "make" on your system, most of the "Module::Build" code is pure-perl and written in a very cross-platform way. ok sturm@
30 lines
600 B
Makefile
30 lines
600 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2004/05/26 11:16:49 msf Exp $
|
|
|
|
COMMENT= "build and install Perl modules"
|
|
|
|
V= 0.25
|
|
DISTNAME= Module-Build-${V}
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
|
|
MAINTAINER= Mathieu Sauve-Frankel <msf@openbsd.org>
|
|
|
|
# Artistic
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Module/}
|
|
|
|
CONFIGURE_STYLE= perl modbuild
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= ::archivers/p5-Archive-Tar \
|
|
::devel/p5-ExtUtils-ParseXS \
|
|
::devel/p5-YAML
|
|
|
|
PKG_ARCH= *
|
|
|
|
.include <bsd.port.mk>
|