40 lines
1.3 KiB
Ruby
40 lines
1.3 KiB
Ruby
class Bamtools < Formula
|
|
desc "C++ API and command-line toolkit for BAM data"
|
|
homepage "https://github.com/pezmaster31/bamtools"
|
|
url "https://github.com/pezmaster31/bamtools/archive/v2.5.1.tar.gz"
|
|
sha256 "4abd76cbe1ca89d51abc26bf43a92359e5677f34a8258b901a01f38c897873fc"
|
|
head "https://github.com/pezmaster31/bamtools.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "e06e5350260683c40d522ea80415d67bad57be49c30e5b534256aeac0bc5e3d8" => :catalina
|
|
sha256 "5c1195094d84ce0e5ec63660597029dad111639e7212537c1d083444714ac294" => :mojave
|
|
sha256 "cd3886cfb77b71ef9924d5475e4dbae2d42c4c66ef3880de33ca202855ce92b0" => :high_sierra
|
|
sha256 "5e72d5b1b5b18551bbd91c7f3b7a2dd6e763b13add38b9a3a798bb5a450be64e" => :sierra
|
|
sha256 "920e533776328d79f47bb562af5cfa00d855223818916e00614ee81d821f211c" => :el_capitan
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
uses_from_macos "zlib"
|
|
|
|
def install
|
|
mkdir "build" do
|
|
system "cmake", "..", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include "api/BamWriter.h"
|
|
using namespace BamTools;
|
|
int main() {
|
|
BamWriter writer;
|
|
writer.Close();
|
|
}
|
|
EOS
|
|
system ENV.cxx, "test.cpp", "-I#{include}/bamtools", "-L#{lib}",
|
|
"-lbamtools", "-lz", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|