mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
7c47779cb9
${PERL5} points to a specific version of perl, say, perl5.22.1, it is fine to use it in a ports Makefile to do Perly things, but ports using it must use ${PERL}, that points to /usr/local/bin/perl so that if the minor version is updated, the shebang keep working. While there, make some ports use shebangfix, regen a few patches, and bump PORTREVISION where a shebang went from PERL5 to PERL. PR: 205367 With hat: portmgr Sponsored by: Absolight
27 lines
499 B
Makefile
27 lines
499 B
Makefile
# Created by: Anton Berezin <tobez@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= biblical-curse
|
|
PORTVERSION= 0.02
|
|
CATEGORIES= misc
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= tobez@FreeBSD.org
|
|
COMMENT= Fake biblical curse generator
|
|
|
|
USES= perl5 shebangfix
|
|
USE_PERL5= run
|
|
SHEBANG_FILES= biblical-curse
|
|
NO_BUILD= yes
|
|
|
|
SRC= ${.CURDIR}/src
|
|
|
|
do-extract:
|
|
@${CP} -R ${SRC}/ ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/biblical-curse ${STAGEDIR}${PREFIX}/bin/biblical-curse
|
|
|
|
.include <bsd.port.mk>
|