d3b6c99818
BSDPAN is the collection of modules that provides tighter than ever integration of Perl into BSD Unix. Currently, BSDPAN does the following: o makes p5- FreeBSD ports PREFIX-clean; o registers Perl modules in the FreeBSD package database with a package name derived from the module name. The name is of the form: bsdpan-ModuleName-V.VV. Anyone interested in where BSDPAN is developing should read Anton's message to the ports mailling list: Message-ID: <20010105040828.A26011@heechee.tobez.org> Submitted by: Anton Berezin <tobez@tobez.org>
19 lines
384 B
Makefile
19 lines
384 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Doing a make install builds /usr/libdata/perl/BSDPAN
|
|
|
|
DDIR= ${DESTDIR}/usr/libdata/perl/BSDPAN
|
|
|
|
NOOBJ= noobj
|
|
|
|
all clean cleandir depend lint tags:
|
|
|
|
FILES= BSDPAN.pm BSDPAN/Override.pm ExtUtils/MM_Unix.pm ExtUtils/Packlist.pm
|
|
|
|
.for file in ${FILES}
|
|
beforeinstall::
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${file} ${DDIR}/${file}
|
|
.endfor
|
|
|
|
.include <bsd.prog.mk>
|