mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
4e8265c624
Reported by: portscout
30 lines
612 B
Makefile
30 lines
612 B
Makefile
PORTNAME= mothur
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.45.3
|
|
CATEGORIES= biology
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Software for bioinformatics of the microbial ecology community
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.md
|
|
|
|
BUILD_DEPENDS= bash:shells/bash
|
|
|
|
USES= compiler:c++11-lang gmake localbase readline
|
|
USE_GITHUB= yes
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
BINARY_ALIAS= g++=${CXX}
|
|
|
|
EXES= ${PORTNAME} uchime
|
|
|
|
PLIST_FILES= ${EXES:S/^/bin\//}
|
|
|
|
do-install: # https://github.com/mothur/mothur/issues/615
|
|
.for e in ${EXES}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${e} ${STAGEDIR}${PREFIX}/bin
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|