mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
6a7dd1eebf
- Clarify LICENSE - Add LICENSE_FILE Approved by: portmgr blanket
31 lines
597 B
Makefile
31 lines
597 B
Makefile
# Created by: Ralf S. Engelschall
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mm
|
|
PORTVERSION= 1.4.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_OSSP}
|
|
MASTER_SITE_SUBDIR= lib/${PORTNAME}
|
|
|
|
MAINTAINER= rodrigo@FreeBSD.org
|
|
COMMENT= Shared memory allocation library for pre-forked process models
|
|
|
|
LICENSE= BSD4CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= libtool
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
post-build:
|
|
@${ECHO_MSG} "===> Use 'make test' to run a quick test suite."
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmm.so
|
|
|
|
test:
|
|
@cd ${WRKSRC} && ${MAKE} test
|
|
|
|
.include <bsd.port.mk>
|