27 lines
535 B
Makefile
27 lines
535 B
Makefile
# Created by: Emanuel Haupt <ehaupt@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mimalloc
|
|
PORTVERSION= 1.6.7
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= General-purpose allocator with excellent performance characteristics
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS_i386= libatomic_ops>0:devel/libatomic_ops
|
|
|
|
USES= cmake compiler:gcc-c++11-lib
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= microsoft
|
|
|
|
LDFLAGS_i386+= -latomic
|
|
|
|
# ci pipeline creates transient tags
|
|
PORTSCOUT= ignore:1
|
|
|
|
.include <bsd.port.mk>
|