mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
be26d1d912
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
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= bwa
|
|
PORTVERSION= 0.7.17
|
|
DISTVERSIONPREFIX=v
|
|
CATEGORIES= biology
|
|
|
|
MAINTAINER= jwb@FreeBSD.org
|
|
COMMENT= Burrows-Wheeler sequence aligner
|
|
|
|
LICENSE= GPLv3
|
|
|
|
# From 0.7.9a: Recheck for 0.7.17.
|
|
BROKEN_aarch64= fails to compile: invalid conversion between vector type and integer type
|
|
BROKEN_armv6= fails to compile: invalid conversion between vector type and integer type
|
|
BROKEN_armv7= fails to compile: invalid conversion between vector type and integer type
|
|
BROKEN_mips= fails to compile: cc1: unrecognized command line option "-msse2"
|
|
BROKEN_mips64= fails to compile: cc1: unrecognized command line option "-msse2"
|
|
BROKEN_powerpc64= fails to compile: ksw.c: emmintrin.h: No such file or directory
|
|
|
|
USES= gmake perl5 shebangfix tar:bzip2
|
|
SHEBANG_FILES= qualfa2fq.pl xa2multi.pl
|
|
USE_PERL5= run
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= lh3
|
|
|
|
PLIST_FILES= bin/bwa bin/qualfa2fq.pl bin/xa2multi.pl man/man1/bwa.1.gz
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == amd64 || ${ARCH} == i386
|
|
# Avoid #error in emmintrin.h
|
|
CFLAGS+= -msse2
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bwa ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/*.pl ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/*.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.post.mk>
|