opnsense-ports/devel/bam/Makefile
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

32 lines
698 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= Fast and flexible build system using Lua
LICENSE= ZLIB
USES= compiler tar:bzip2
PLIST_FILES= bin/bam
.include <bsd.port.pre.mk>
do-build:
.if ${COMPILER_TYPE} == clang
@${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 ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.post.mk>