53473b6bf5
The MacOS.version? family of methods (other than "leopard?") are poorly defined and lead to confusing code. Replace them in formulae with more explicit comparisons. "MacOS.version" is a special version object that can be compared to numerics, symbols, and strings using the standard Ruby comparison methods. The old methods were moved to compat when the version comparison code was merged, and they must remain there "forever", but they should not be used in new code. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
28 lines
808 B
Ruby
28 lines
808 B
Ruby
require 'formula'
|
|
|
|
class Abyss < Formula
|
|
homepage 'http://www.bcgsc.ca/platform/bioinfo/software/abyss'
|
|
url 'http://www.bcgsc.ca/downloads/abyss/abyss-1.3.4.tar.gz'
|
|
sha1 '763dc423054421829011844ceaa5e18dc43f1ca9'
|
|
head 'https://github.com/sjackman/abyss.git'
|
|
|
|
# Only header files are used from these packages, so :build is appropriate
|
|
depends_on 'boost' => :build
|
|
depends_on 'google-sparsehash' => :build
|
|
|
|
# Snow Leopard comes with mpi but Lion does not
|
|
depends_on 'open-mpi' if MacOS.version >= :lion
|
|
|
|
# strip breaks the ability to read compressed files.
|
|
skip_clean 'bin'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/ABYSS", "--version"
|
|
end
|
|
end
|