eac5d50f51
- Fixed issues with CC environment variables - Out of bounds fixed to debug output and output cache ( RyanLucchese ) - Solaris compiler support ( RyanLucchese ) - XLC compiler support ( RyanLucchese ) - Fixed parallel build with make ( hasufell ) - Syntax hilighting for the readme ( mailaender ) - Upgraded to Lua 5.3.3 from 5.1 - More accurate cache to reduce recompiles when switching parameters - Make use of CC environment variables when available by default - Build should now be reproducable and not add date or timestamps into the executable - Bug-fixes
24 lines
527 B
Makefile
24 lines
527 B
Makefile
# $NetBSD: Makefile,v 1.3 2019/07/01 13:39:43 nia Exp $
|
|
|
|
DISTNAME= bam-0.5.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=matricks/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= fstd.lkml@gmail.com
|
|
HOMEPAGE= https://matricks.github.io/bam/
|
|
COMMENT= Fast and flexible LUA-driven build system
|
|
LICENSE= zlib
|
|
|
|
USE_LANGUAGES= c
|
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-build:
|
|
set -e; cd ${WRKSRC}; \
|
|
CC=${CC:Q} ./make_unix.sh
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bam ${DESTDIR}${PREFIX}/bin/bam
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|