forked from bioconda/bioconda-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'bioconda:master' into master
- Loading branch information
Showing
112 changed files
with
890 additions
and
851 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,28 @@ | ||
#!/bin/bash | ||
|
||
rm -rf data/ | ||
# Build specifying CPP compiler and C compiler | ||
# Use sed to replace 'make' with 'make CXX=${CXX} CC=${CC}' | ||
# This is necessary because the Makefile does not respect the CXX and CC variables | ||
# Create bin directory | ||
mkdir bin | ||
mkdir -p "${PREFIX}"/bin/ | ||
mv utils/*.py "${PREFIX}"/bin/ | ||
|
||
# Generate Makefile | ||
cd bin; cmake -DTINY=ON .. | ||
|
||
# Build executables mutselomega and readmutselomega | ||
make CXX=${GXX} CC=${CC} -j ${CPU_COUNT} mutselomega readmutselomega | ||
mv mutselomega "${PREFIX}"/bin/; mv readmutselomega "${PREFIX}"/bin/ | ||
|
||
# Build executables nodemutsel and readnodemutsel | ||
make CXX=${GXX} CC=${CC} -j ${CPU_COUNT} nodemutsel readnodemutsel | ||
mv nodemutsel "${PREFIX}"/bin/; mv readnodemutsel "${PREFIX}"/bin/ | ||
|
||
# Build PSASS specifying CPP compiler and C compiler | ||
make CXX="${CXX}" CC="${CC}" tiny | ||
# Build executables nodeomega and readnodeomega | ||
make CXX=${GXX} CC=${CC} -j ${CPU_COUNT} nodeomega readnodeomega | ||
mv nodeomega "${PREFIX}"/bin/; mv readnodeomega "${PREFIX}"/bin/ | ||
|
||
# Copy all generated binaries to bin | ||
cp bin/*mutselomega "${PREFIX}"/bin/ | ||
cp bin/*nodemutsel "${PREFIX}"/bin/ | ||
cp utils/*.py "${PREFIX}"/bin | ||
# Build executables nodetraits and readnodetraits | ||
make CXX=${GXX} CC=${CC} -j ${CPU_COUNT} nodetraits readnodetraits | ||
mv nodetraits "${PREFIX}"/bin/; mv readnodetraits "${PREFIX}"/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.