Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update medaka to 1.12.0 #48523

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
364 changes: 0 additions & 364 deletions recipes/medaka/LICENSE.md

This file was deleted.

8 changes: 5 additions & 3 deletions recipes/medaka/build.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash
#!/bin/bash -euo

export INCLUDE_PATH="${PREFIX}/include"
export LIBRARY_PATH="${PREFIX}/lib"
export LDFLAGS="${LDFLAGS} -L${PREFIX}/lib"

export CFLAGS="-I${PREFIX}/include ${LDFLAGS}"
export CFLAGS="${CFLAGS} -O3 -I${PREFIX}/include ${LDFLAGS}"

# disable Makefile driven build of htslib.a
sed -i.bak "s/'build_ext': HTSBuild//" setup.py
Expand All @@ -13,4 +13,6 @@ sed -i.bak "s/'build_ext': HTSBuild//" setup.py
sed -i.bak 's/extra_objects.*//' build.py
sed -i.bak 's/^libraries=\[/libraries=\["hts",/' build.py

$PYTHON -m pip install . --no-deps --ignore-installed -vvv
rm -rf *.bak

${PYTHON} -m pip install . --no-deps --no-build-isolation --no-cache-dir -vvv
Loading
Loading