Files
ports/biology/picard-tools/Makefile
T
Jason W. Bacon 4a5b8a759b biology/picard-tools: CLI tools for manipulating sequencing data
Picard is a set of command line tools for manipulating high-throughput
sequencing (HTS) data and formats such as SAM/BAM/CRAM and VCF. These file
formats are defined in the Hts-specs repository.
2020-06-13 13:54:47 +00:00

36 lines
718 B
Makefile

# $FreeBSD$
PORTNAME= picard
DISTVERSION= 2.22.9
CATEGORIES= biology java
MASTER_SITES= http://github.com/broadinstitute/picard/releases/download/${PORTVERSION}/
PKGNAMESUFFIX= -tools
DISTNAME= ${PORTNAME}
EXTRACT_SUFX= .jar
MAINTAINER= jwb@FreeBSD.org
COMMENT= CLI tools for manipulating high-throughput sequencing (HTS) data
LICENSE= MIT
RUN_DEPENDS= samtools:biology/samtools
USE_JAVA= 1.8+
JAVA_RUN= yes
SUB_FILES= picard
NO_BUILD= yes
NO_ARCH= yes
PLIST_FILES= bin/picard ${JAVAJARDIR}/picard.jar
do-extract:
# No extract
do-install:
${INSTALL_DATA} ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} \
${STAGEDIR}${JAVAJARDIR}
${INSTALL_SCRIPT} ${WRKDIR}/picard ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>