mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
d9b5127626
Approved by: portmgr (blanket)
33 lines
792 B
Makefile
33 lines
792 B
Makefile
# Created by: Thomas Gellekum <tg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= randlib
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= math
|
|
MASTER_SITES= https://biostatistics.mdanderson.org/SoftwareDownload/ProductDownloadFiles/ \
|
|
LOCAL/bf
|
|
DISTNAME= RANDLIB_V90
|
|
|
|
MAINTAINER= bf@FreeBSD.org
|
|
COMMENT= Library of Routines for Random Number Generation
|
|
|
|
USE_LDCONFIG= yes
|
|
MAKE_ENV= NO_PROFILE=true
|
|
WRKSRC= ${WRKDIR}/source/randlib.c/src
|
|
PORTDOCS= Basegen.c.doc randlib.c.chs randlib.c.fdoc
|
|
PLIST_FILES= include/randlib.h \
|
|
lib/librandlib.a \
|
|
lib/librandlib.so \
|
|
lib/librandlib.so.1
|
|
|
|
post-extract:
|
|
${CP} ${FILESDIR}/Makefile.lib ${WRKSRC}/Makefile
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKDIR}/source/randlib.c/doc/* ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|