blob: 7fc0eeb5e941a391f13b5cf6dc1ffb5a54ef9c1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# $FreeBSD$
PORTNAME= STAR
DISTVERSION= 2.7.0f
CATEGORIES= biology
PKGNAMEPREFIX= rna-
MAINTAINER= jwb@FreeBSD.org
COMMENT= Spliced Transcripts Alignment to a Reference
LICENSE= GPLv3
LICENSE_FILE= ${WRKDIR}/STAR-${DISTVERSION}/LICENSE
# 64-bit only, needs 16+ GiB RAM for typical eukaryotic genome
NOT_FOR_ARCHS= i386 powerpc
USES= compiler:openmp gmake
USE_GITHUB= yes
GH_ACCOUNT= alexdobin
WRKSRC_SUBDIR= source
PLIST_FILES= bin/STAR
.include <bsd.port.pre.mk>
# Force newer compiler on platforms using GCC 4.2 as base
.if ${CHOSEN_COMPILER_TYPE} == gcc
USE_GCC= yes
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/STAR ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.post.mk>
|