Skip to content

Commit

Permalink
biology/haplohseq: Unbreak build on Darwin
Browse files Browse the repository at this point in the history
Uses deprecated C++ syntax
Force c++14 standard: Min for boost, max for haplohseq
  • Loading branch information
bacon committed Nov 29, 2024
1 parent 5027d09 commit 5fc22d1
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions biology/haplohseq/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# $NetBSD: Makefile,v 1.1 2024/10/12 12:19:51 bacon Exp $
# $NetBSD: Makefile,v 1.2 2024/11/29 14:19:31 bacon Exp $

DISTNAME= haplohseq-0.1.2.2
PKGREVISION= 1
CATEGORIES= biology
MASTER_SITES= ${MASTER_SITE_GITHUB:=outpaddling/}
GITHUB_PROJECT= haplohseq
Expand All @@ -17,9 +18,11 @@ SUBST_SED.test= -e 's|\.\./haplohseq|haplohseq|'
SUBST_SED.test+= -e 's|python|${PYTHONBIN}|'
SUBST_FILES.test= example/example_run.sh

USE_LANGUAGES= c c++
USE_TOOLS+= gmake pax
MAKE_FILE= makefile
USE_LANGUAGES= c c++
USE_CXX_FEATURES+= c++14 # Minimum for boost, maximum for haplohseq
FORCE_CXX_STD+= c++14
USE_TOOLS+= gmake pax
MAKE_FILE= makefile

EXAMPLESDIR= ${PREFIX}/share/examples/haplohseq

Expand Down

0 comments on commit 5fc22d1

Please sign in to comment.