36 lines
1.2 KiB
Ruby
36 lines
1.2 KiB
Ruby
class Igv < Formula
|
|
desc "Interactive Genomics Viewer"
|
|
homepage "https://www.broadinstitute.org/software/igv"
|
|
url "https://data.broadinstitute.org/igv/projects/downloads/2.13/IGV_2.13.2.zip"
|
|
sha256 "92ab783f693506cafc3499f014f63dce950534b0499e153853cde010a101c104"
|
|
license "MIT"
|
|
|
|
livecheck do
|
|
url "https://software.broadinstitute.org/software/igv/download"
|
|
regex(/href=.*?IGV[._-]v?(\d+(?:\.\d+)+)\.zip/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "7c244a99c1a25df8a062a77ffb263fa090dba4a0a188cc991fa4c75c3fec28c9"
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
|
|
def install
|
|
inreplace ["igv.sh", "igvtools"], /^prefix=.*/, "prefix=#{libexec}"
|
|
bin.install "igv.sh" => "igv"
|
|
bin.install "igvtools"
|
|
libexec.install "igv.args", "lib"
|
|
bin.env_script_all_files libexec, Language::Java.overridable_java_home_env
|
|
end
|
|
|
|
test do
|
|
assert_match "Usage:", shell_output("#{bin}/igvtools")
|
|
assert_match "org/broad/igv/ui/IGV.class", shell_output("#{Formula["openjdk"].bin}/jar tf #{libexec}/lib/igv.jar")
|
|
|
|
ENV.append "_JAVA_OPTIONS", "-Duser.home=#{testpath}"
|
|
(testpath/"script").write "exit"
|
|
assert_match "Using system JDK.", shell_output("#{bin}/igv -b script")
|
|
end
|
|
end
|