NEW IN WAF 2.0.22 ----------------- * Fix stdin propagation with faulty vcvarsall scripts #2315 * Enable mixing Unix-style paths with destdir on Windows platforms #2337 * Fix shell escaping unit test parameters #2314 * Improve extras/clang_compilation_database and extras/swig compatibility #2336 * Propagate C++ flags to the Cuda compiler in extras/cuda #2311 * Fix detection of Qt 5.0.0 (preparation for Qt6) #2331 * Enable Haxe processing #2308 * Fix regression in MACOSX_DEPLOYMENT_TARGET caused by distutils #2330 * Fix extras/wafcache concurrent trimming issues #2312 * Fix extras/wafcache symlink handling #2327
24 lines
608 B
Makefile
24 lines
608 B
Makefile
# $NetBSD: Makefile,v 1.54 2021/02/04 11:16:45 wiz Exp $
|
|
|
|
DISTNAME= waf-2.0.22
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://waf.io/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://waf.io/
|
|
COMMENT= Framework for configuring, compiling, and installing applications
|
|
LICENSE= modified-bsd
|
|
|
|
USE_LANGUAGES= # none
|
|
REPLACE_PYTHON= waf-light
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./waf-light configure build
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/waf ${DESTDIR}${PREFIX}/bin
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|