freebsd-ports/biology/jellyfish/Makefile
Jason W. Bacon be26d1d912 Multiple ports:
Change maintainer email bacon4000@gmail.com to jwb@FreeBSD.org
Remove Created by comments for same user

Approved by: jrm (mentor)
Differential Revision:  https://reviews.freebsd.org/D14128
2018-01-31 01:07:07 +00:00

39 lines
734 B
Makefile

# $FreeBSD$
PORTNAME= jellyfish
PORTVERSION= 2.2.6
PORTREVISION= 2
DISTVERSIONPREFIX= v
CATEGORIES= biology
MAINTAINER= jwb@FreeBSD.org
COMMENT= Fast, memory-efficient counting of k-mers in DNA
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= yaggo:devel/yaggo
GNU_CONFIGURE= yes
USES= autoreconf compiler:c++11-lib gmake libtool pathfix pkgconfig
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= gmarcais
GH_PROJECT= Jellyfish
INSTALL_TARGET= install-strip
PLIST_SUB= VER=${PORTVERSION}
BROKEN_aarch64= Fails to compile: error: variable res is uninitialized
.include <bsd.port.pre.mk>
# SSE code assumes amd64 features
.if ${ARCH} != "amd64"
CONFIGURE_ARGS+=--without-sse
.endif
.include <bsd.port.post.mk>