blob: 0a7189ba3d1c8bf93d605f67e63e496a089caf32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# $NetBSD: Makefile,v 1.5 2012/09/11 23:04:16 asau Exp $
#
DISTNAME= aamath-0.3
PKGREVISION= 2
CATEGORIES= math
MASTER_SITES= http://fuse.superglue.se/aamath/
MAINTAINER= esg@sdf.lonestar.org
HOMEPAGE= http://fuse.superglue.se/aamath/
COMMENT= ASCII art mathematics
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
WRKSRC= ${WRKDIR}/aamath
USE_LANGUAGES= c++
MAKE_JOBS_SAFE= no
USE_TOOLS= yacc lex
BUILD_TARGET= aamath
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/aamath ${DESTDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/aamath.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
.include "../../devel/readline/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|