3e474a90d8
around at either build-time or at run-time is: USE_TOOLS+= perl # build-time USE_TOOLS+= perl:run # run-time Also remove some places where perl5/buildlink3.mk was being included by a package Makefile, but all that the package wanted was the Perl executable.
31 lines
1 KiB
Makefile
31 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2005/07/16 01:19:11 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= parrot-0.0.1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://www.netthink.co.uk/downloads/
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://www.python.org/parrot.html
|
|
COMMENT= Bytecode language possibly to be used by Perl/Python
|
|
|
|
USE_TOOLS+= perl:run
|
|
|
|
BUILD_TARGET= test_prog
|
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM_DIR} ${PREFIX}/include/parrot
|
|
${INSTALL_PROGRAM_DIR} ${PREFIX}/share/doc/parrot
|
|
${INSTALL_PROGRAM_DIR} ${PREFIX}/share/parrot
|
|
${INSTALL_PROGRAM} ${WRKSRC}/test_prog ${PREFIX}/bin/parrot
|
|
${INSTALL_SCRIPT} ${WRKSRC}/assemble.pl ${PREFIX}/share/parrot
|
|
${INSTALL_SCRIPT} ${WRKSRC}/disassemble.pl ${PREFIX}/share/parrot
|
|
${INSTALL_SCRIPT} ${WRKSRC}/t/test*.pasm ${PREFIX}/share/parrot
|
|
${INSTALL_DATA} ${WRKSRC}/opcode_table ${PREFIX}/include/parrot
|
|
${INSTALL_DATA} ${WRKSRC}/interp_guts.h ${PREFIX}/include/parrot
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/parrot
|
|
${INSTALL_DATA} ${WRKSRC}/TODO ${PREFIX}/share/doc/parrot
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|