freebsd-ports/devel/bam/Makefile
Martin Wilke 438824d9a7 Bam is a fast and flexible build system. Bam uses Lua to describe the build
process.  It takes its inspiration for the script files from scons.  While
scons focuses on being 100% correct when building, bam makes a few sacrifices
to acquire fast full and incremental build times.

WWW: http://matricks.github.com/bam/

PR:		ports/175857
Submitted by:	Timothy Beyer <beyert@cs.ucr.edu>
2013-02-12 12:12:10 +00:00

32 lines
704 B
Makefile

# Created by: Timothy Beyer <beyert@cs.ucr.edu>
# $FreeBSD$
PORTNAME= bam
PORTVERSION= 0.4.0
CATEGORIES= devel
MASTER_SITES= http://github.com/downloads/matricks/bam/
MAINTAINER= beyert@cs.ucr.edu
COMMENT= A fast and flexible build system using Lua
LICENSE= ZLIB
LICENSE_FILE= ${WRKSRC}/license.txt
FETCH_ARGS= "-Fpr"
USE_BZIP2= yes
PLIST_FILES= bin/bam
do-build:
.if defined(CC) && ${CC:T:Mclang}
@${REINPLACE_CMD} -e 's|-ldl||g' ${WRKSRC}/make_unix_clang.sh
(cd ${WRKSRC} && ${SH} make_unix_clang.sh)
.else
@${REINPLACE_CMD} -e 's|-ldl||g' ${WRKSRC}/make_unix.sh
(cd ${WRKSRC} && ${SH} make_unix.sh)
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bam ${PREFIX}/bin
.include <bsd.port.mk>