mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
ecd280d820
PLINK is a free, open-source whole genome association analysis toolset. PLINK/SEQ is an open-source C/C++ library for working with human genetic variation data. PR: ports/171918 [1] PR: ports/171922 [2] Submitted by: Jason Bacon <jwbacon at tds.net>
28 lines
587 B
Makefile
28 lines
587 B
Makefile
# Created by: Jason Bacon <jwbacon@tds.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= plink
|
|
PORTVERSION= 1.07
|
|
CATEGORIES= biology science
|
|
MASTER_SITES= http://pngu.mgh.harvard.edu/~purcell/plink/dist/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
|
|
|
MAINTAINER= jwbacon@tds.net
|
|
COMMENT= Whole genome association analysis toolset
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= lapack:${PORTSDIR}/math/lapack
|
|
|
|
USE_ZIP= yes
|
|
USE_GMAKE= yes
|
|
USE_FORTRAN= yes # Make it use the same compiler as lapack
|
|
|
|
PLIST_FILES= bin/plink
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/plink ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|