3bd11fa387
aamath is a program that reads mathematical expressions in infix notation and renders them as ASCII art. It may be useful to send mathematics through text-only media, such as e-mail or newsgroups. From Matthias Kilian <kili@outback.escape.de>
31 lines
617 B
Makefile
31 lines
617 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/04/06 00:02:00 alek Exp $
|
|
|
|
COMMENT= "ASCII art mathematics"
|
|
|
|
DISTNAME= aamath-0.1
|
|
CATEGORIES= math
|
|
|
|
HOMEPAGE= http://fuse.superglue.se/aamath/
|
|
|
|
MAINTAINER= Matthias Kilian <kili@outback.escape.de>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
WANTLIB= c m stdc++ termcap readline
|
|
|
|
NO_REGRESS= Yes
|
|
WRKDIST= ${WRKDIR}/aamath
|
|
ALL_TARGET=
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIST}/aamath ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKDIST}/aamath.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|