mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
86b440e231
Bump port revision Submitted by: green dog <fiziologus@gmail.com>
23 lines
454 B
Makefile
23 lines
454 B
Makefile
# Created by: Alexander Churanov <churanov.port.maintainer@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= boost-jam
|
|
COMMENT= Build tool from the boost.org
|
|
|
|
PORTREVISION= 1
|
|
|
|
PLIST_FILES= bin/bjam
|
|
|
|
.include "${.CURDIR}/../boost-all/common.mk"
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/tools/build/v2/engine && \
|
|
${MAKE_ENV} ./build.sh ${CC}
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tools/build/v2/engine/bin.*/bjam \
|
|
${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|