forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblasr.rb
More file actions
28 lines (23 loc) · 704 Bytes
/
blasr.rb
File metadata and controls
28 lines (23 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require 'formula'
class Blasr < Formula
homepage 'https://github.com/PacificBiosciences/blasr'
url 'https://github.com/PacificBiosciences/blasr/archive/smrtanalysis-2.1.tar.gz'
sha1 'ac6add1ba8a82cac2515da36c0ec53060c20ea0f'
head 'https://github.com/PacificBiosciences/blasr.git'
depends_on 'hdf5' => 'enable-cxx'
fails_with :clang do
build 500
cause <<-EOS.undent
error: destructor type 'HDFWriteBuffer<int>' in object
destruction expression does not match the type
'BufferedHDFArray<int>' of the object being destroyed
EOS
end
def install
system 'make'
system 'make', 'install', 'PREFIX=' + prefix
end
test do
system 'blasr'
end
end