diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2021-01-19 09:56:15 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2021-01-19 09:56:15 +0000 |
commit | dcbbedf21ef5894f2569ee12af2b9d060288b62a (patch) | |
tree | 38eee6f6f5f54190e33add3d3ebdbde8b2ffc242 /biology | |
parent | 3f71b2e05d55060c108f11f695f4e70e16dafbbc (diff) | |
download | ports-dcbbedf21ef5894f2569ee12af2b9d060288b62a.tar.gz ports-dcbbedf21ef5894f2569ee12af2b9d060288b62a.zip |
Notes
Diffstat (limited to 'biology')
-rw-r--r-- | biology/bioparser/Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/biology/bioparser/Makefile b/biology/bioparser/Makefile index ef912cc50882..0b43e154bc37 100644 --- a/biology/bioparser/Makefile +++ b/biology/bioparser/Makefile @@ -5,7 +5,7 @@ DISTVERSION= 3.0.12 CATEGORIES= biology devel MAINTAINER= yuri@FreeBSD.org -COMMENT= C++ header only parsing library for several formats in bioinformatics +COMMENT= C++ header-only parsing library for several formats in bioinformatics LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE @@ -20,20 +20,20 @@ GH_TUPLE= rvaser:biosoup:e2b39f1:biosoup/vendor/biosoup NO_ARCH= yes -PLIST_FILES= include/bioparser/fasta_parser.hpp \ - include/bioparser/fastq_parser.hpp \ - include/bioparser/mhap_parser.hpp \ - include/bioparser/paf_parser.hpp \ - include/bioparser/parser.hpp \ - include/bioparser/sam_parser.hpp +PLIST_FILES= include/${PORTNAME}/fasta_parser.hpp \ + include/${PORTNAME}/fastq_parser.hpp \ + include/${PORTNAME}/mhap_parser.hpp \ + include/${PORTNAME}/paf_parser.hpp \ + include/${PORTNAME}/parser.hpp \ + include/${PORTNAME}/sam_parser.hpp do-install: cd ${WRKSRC}/include && ${COPYTREE_SHARE} ${PORTNAME} ${STAGEDIR}${PREFIX}/include do-test: @cd ${BUILD_WRKSRC} && \ - ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -Dbioparser_build_tests:BOOL=ON ${CMAKE_SOURCE_PATH} && \ + ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -D${PORTNAME}_build_tests:BOOL=ON ${CMAKE_SOURCE_PATH} && \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ - ${BUILD_WRKSRC}/bin/bioparser_test + ${BUILD_WRKSRC}/bin/${PORTNAME}_test .include <bsd.port.mk> |