blob: 5c0049970ebbf4720ea8180cbb878e90167fc80c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Created by: Jeffrey Hsu <hsu@FreeBSD.org>
# $FreeBSD$
PORTNAME= jam
PORTVERSION= 2.5
PORTREVISION= 2
CATEGORIES= devel
MASTER_SITES= ftp://ftp.perforce.com/jam/
MAINTAINER= ports@FreeBSD.org
COMMENT= A build utility like make(1)
USE_ZIP= yes
NO_WRKSUBDIR= yes
NO_STAGE= yes
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/*.html ${DOCSDIR}
.endif
.include <bsd.port.mk>
|