5.1.0: This release is primarily about fine-tuning, ranging from several new features to numerous notable performance and portability enhancements. The release and prior dev versions have been running in multiple large scale applications for months, and the cumulative improvements are substantial in many cases.
31 lines
867 B
Makefile
31 lines
867 B
Makefile
# $NetBSD: Makefile,v 1.11 2018/05/15 08:35:50 adam Exp $
|
|
|
|
DISTNAME= jemalloc-5.1.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=jemalloc/}
|
|
GITHUB_RELEASE= ${PKGVERSION_NOREV}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= gson@NetBSD.org
|
|
HOMEPAGE= http://jemalloc.net/
|
|
COMMENT= General purpose malloc(3) implementation
|
|
LICENSE= 2-clause-bsd
|
|
|
|
BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt
|
|
BUILD_DEPENDS+= docbook-xsl-[0-9]*:../../textproc/docbook-xsl
|
|
|
|
USE_LANGUAGES= c
|
|
USE_TOOLS+= autoconf automake aclocal gmake perl:run
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-cc-silence
|
|
CONFIGURE_ARGS+= --enable-xmalloc
|
|
CONFIGURE_ARGS+= --with-xslroot=${PREFIX}/share/xsl/docbook/
|
|
PKGCONFIG_OVERRIDE= jemalloc.pc.in
|
|
|
|
REPLACE_PERL= bin/jeprof.in
|
|
|
|
BUILD_TARGET= all dist
|
|
TEST_TARGET= check
|
|
TEST_ENV= LD_LIBRARY_PATH=${WRKSRC}/lib
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|