d302771d1d
Fix a pkglint warning. NEW IN WAF 2.0.19 ----------------- * Enable race-free pdb file generation waflib/extras/msvc_pdb.py #1731 * Fix negative values for -j #2256 * Fix Swig example compatibility with Python3 #2259 * Fix lto settings for endianness configuration tests #2250 * Tune the application name on --help #2254 * Improve Qt5's fPIC/fPIE detection * Propagate LDFLAGS to Fortran tasks (in addition to LINKFLAGS) * Enable local and remote build object caches waflib/extras/wafcache.py
24 lines
608 B
Makefile
24 lines
608 B
Makefile
# $NetBSD: Makefile,v 1.50 2020/01/08 13:15:09 wiz Exp $
|
|
|
|
DISTNAME= waf-2.0.19
|
|
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"
|