freebsd-ports/biology/trimadap/Makefile
Alexey Dokuchaev 61b6613393 Style: improve ONLY_FOR_ARCHS_REASON (grammar, markup, etc.)
ONLY_FOR_ARCHS_REASON is used as part of the sentence and thus should
start with lower-case letter and not end with a period which is added
by the framework, similar to other knobs like BROKEN, IGNORE, et al.

While here, remove needless quoting, add missing Oxford comma, expand
contractions and jargonisms, use correct spelling for proper names.
2021-10-25 12:58:29 +00:00

31 lines
621 B
Makefile

PORTNAME= trimadap
DISTVERSION= 0.1-3
DISTVERSIONSUFFIX= -gddfef21
CATEGORIES= biology
MAINTAINER= jwb@FreeBSD.org
COMMENT= Trim adapter sequences from Illumina data using heuristic rules
LICENSE= GPLv2
ONLY_FOR_ARCHS= amd64 i386 powerpc64le
ONLY_FOR_ARCHS_REASON= uses hard-coded SSE instructions
USE_GITHUB= yes
GH_ACCOUNT= lh3
PLIST_FILES= bin/trimadap-mt
CFLAGS_i386= -msse2
.include <bsd.port.options.mk>
.if ${ARCH} == powerpc64le
CFLAGS+= -DNO_WARN_X86_INTRINSICS
USES= compiler:gcc-c++11-lib
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/trimadap-mt ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>