ede1996e21
This module creates and manipulates PAR distributions. They are architecture-specific PAR files, containing everything under blib/ of CPAN distributions after their "make" or "Build" stage, a META.yml describing metadata of the original CPAN distribution, and a MANIFEST detailing all files within it. Digitally signed PAR distributions will also contain a SIGNATURE file. The naming convention for such distributions is: $NAME-$VERSION-$ARCH-$PERL_VERSION.par For example, "PAR-Dist-0.01-i386-freebsd-5.8.0.par" corresponds to the 0.01 release of "PAR-Dist" on CPAN, built for perl 5.8.0 running on "i386-freebsd". Submitted by: autrijus@autrijus.org
22 lines
472 B
Makefile
22 lines
472 B
Makefile
# New ports collection makefile for: devel/p5-PAR-Dist
|
|
# Date created: Aug 27 2003
|
|
# Whom: Autrijus Tang <autrijus@autrijus.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= PAR-Dist
|
|
PORTVERSION= 0.05
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= ../../authors/id/A/AU/AUTRIJUS
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= autrijus@autrijus.org
|
|
COMMENT= Create and manipulate PAR distributions
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= PAR::Dist.3
|
|
|
|
.include <bsd.port.mk>
|