-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* tidk v0.2.62 * Remove v from version string. * Add libssl-dev * Add host openssl. * Add OPENSSL_DIR to build.sh * Move tidk to /bin * Trying adding a few things * Small edits. * New version tidk without dir bug...
- Loading branch information
1 parent
5ef9b97
commit 13a52b7
Showing
2 changed files
with
9 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,4 @@ | ||
#!/bin/bash -e | ||
|
||
# taken from https://github.com/bioconda/bioconda-recipes/blob/25ee21573c577aa1ae899e0f7fbbc848d8a63865/recipes/longshot/build.sh | ||
|
||
# this build script is taken from the rust-bio-tools recipe | ||
# https://github.com/bioconda/bioconda-recipes/blob/master/recipes/rust-bio-tools/build.sh | ||
|
||
# taken from yacrd recipe, see: https://github.com/bioconda/bioconda-recipes/blob/2b02c3db6400499d910bc5f297d23cb20c9db4f8/recipes/yacrd/build.sh | ||
if [ "$(uname)" == "Darwin" ]; then | ||
|
||
# apparently the HOME variable isn't set correctly, and circle ci output indicates the following as the home directory | ||
export HOME="/Users/distiller" | ||
export HOME=`pwd` | ||
|
||
# according to https://github.com/rust-lang/cargo/issues/2422#issuecomment-198458960 removing circle ci default configuration solves cargo trouble downloading crates | ||
#git config --global --unset url.ssh://git@git.luolix.top.insteadOf | ||
|
||
fi | ||
|
||
# build statically linked binary with Rust | ||
C_INCLUDE_PATH=$PREFIX/include LIBRARY_PATH=$PREFIX/lib cargo install --path . --root $PREFIX | ||
C_INCLUDE_PATH=$PREFIX/include OPENSSL_DIR=$PREFIX LIBRARY_PATH=$PREFIX/lib cargo install --verbose --path . --root "${PREFIX}" |
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