mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 03:46:30 -04:00
Changes: http://www.boost.org/users/history/version_1_67_0.html PR: 227427 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D15030
25 lines
542 B
Makefile
25 lines
542 B
Makefile
# Created by: Alexander Churanov <churanov.port.maintainer@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= boost-jam
|
|
COMMENT= Build tool from the boost.org
|
|
|
|
PLIST_FILES= bin/bjam
|
|
|
|
EXTRACT_AFTER_ARGS= ${DISTNAME}/${WRKSRC_SUBDIR}
|
|
MAKE_CMD= ./build.sh
|
|
ALL_TARGET= cc ${WITH_DEBUG:D--debug}
|
|
MAKE_FLAGS= #
|
|
_MAKE_JOBS= #
|
|
MAKEFILE= #
|
|
|
|
WRKSRC_SUBDIR= tools/build/src/engine
|
|
|
|
.include "${.CURDIR}/../boost-all/common.mk"
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin.*/bjam \
|
|
${STAGEDIR}${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|