5f971f3def
QuickJS is a small and embeddable Javascript engine. It supports the ES2020 specification including modules, asynchronous generators and proxies. It optionally supports mathematical extensions such as big integers (BigInt), big floating point numbers (BigFloat) and operator overloading.
17 lines
396 B
Makefile
17 lines
396 B
Makefile
# $NetBSD: Makefile,v 1.1 2019/11/14 21:20:04 rillig Exp $
|
|
|
|
DISTNAME= quickjs-2019-10-27
|
|
CATEGORIES= lang
|
|
MASTER_SITES= https://bellard.org/quickjs/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://bellard.org/quickjs/
|
|
COMMENT= Quick JavaScript interpreter
|
|
LICENSE= mit
|
|
|
|
USE_TOOLS+= gmake
|
|
MAKE_FLAGS= prefix=${PREFIX}
|
|
TEST_TARGET= test
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|