mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
29 lines
626 B
Makefile
29 lines
626 B
Makefile
# New ports collection makefile for: Doug Lea malloc library
|
|
# Date created: 3 June 1995
|
|
# Whom: roberto
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dlmalloc
|
|
PORTVERSION= 2.8.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://gee.cs.oswego.edu/pub/misc/ \
|
|
ftp://ftp.netsw.org/system/libs/memory/optimize/
|
|
DISTFILES= malloc-${PORTVERSION}.c malloc-${PORTVERSION}.h
|
|
|
|
MAINTAINER= roberto@FreeBSD.org
|
|
COMMENT= Small, fast malloc library by Doug Lea
|
|
|
|
NO_WRKSUBDIR= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKDIR}
|
|
.for f in ${DISTFILES}
|
|
${CP} -p ${DISTDIR}/${f} ${WRKDIR}
|
|
.endfor
|
|
${CP} -p ${FILESDIR}/Makefile ${WRKDIR}
|
|
|
|
.include <bsd.port.mk>
|