-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #284 from simsong/slg-dev
updated installation scripts. removed bison, we were not using it.
- Loading branch information
Showing
8 changed files
with
40 additions
and
66 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
# and http://www.bioinf.uni-freiburg.de/~mmann/HowTo/automake.html | ||
|
||
AC_PREREQ([2.69]) | ||
AC_INIT([BULK_EXTRACTOR],[2.0.0-dev],[[email protected]]) | ||
AC_INIT([BULK_EXTRACTOR],[2.0.0-beta2],[[email protected]]) | ||
AC_CONFIG_MACRO_DIR(m4) | ||
AC_CONFIG_AUX_DIR([build-aux]) | ||
################################################################ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
if [ -r /usr/local/bin/brew ]; then | ||
WHICH=/usr/local/bin/brew | ||
elif [ -r /opt/local/bin/port ]; then | ||
WHICH="sudo /opt/local/bin/port -Nc" | ||
else | ||
echo Cannot find brew or macports executable. | ||
exit 1 | ||
fi | ||
|
||
cat <<EOF | ||
******************************************************************* | ||
Configuring MacOS with $WHICH | ||
******************************************************************* | ||
press any key to continue... | ||
EOF | ||
read | ||
|
||
# Note: openssl no longer required | ||
# Apple's provided flex is 2.6.4, which is the same that is provided by brew | ||
PKGS+="wget libtool autoconf automake" | ||
|
||
$WHICH install $PKGS || (echo installation install failed; exit 1) | ||
exit 0 |
This file was deleted.
Oops, something went wrong.
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