mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
119ad92dbc
Malbolge is an esoteric language, named after the eighth circle of hell in the Divina Commedia by Dante. Two years were necessary to see the first software produced in this language. WWW: http://www.dereckson.be/software/Malbolge/ PR: ports/169863 Submitted by: dereckson@gmail.com
32 lines
606 B
Makefile
32 lines
606 B
Makefile
# New ports collection makefile for: malbolge
|
|
# Date created: 13 July 2012
|
|
# Whom: Dereckson <dereckson@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= malbolge
|
|
PORTVERSION= 0.1.1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://cdn.bitbucket.org/dereckson/${PORTNAME}/downloads/
|
|
|
|
MAINTAINER= dereckson@gmail.com
|
|
COMMENT= An esoteric language
|
|
|
|
PLIST_FILES= bin/malbolge
|
|
|
|
PORTDOCS= *
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/malbolge ${PREFIX}/bin
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/malbolge.txt ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|