class IndelSeqGen < Formula # cite Strope_2009: "https://doi.org/10.1093/molbev/msp174" desc "Sequence simulation for divergent DNA and AA families" homepage "http://bioinfolab.unl.edu/~cstrope/iSG/" url "http://bioinfolab.unl.edu/~cstrope/iSG/indel-seq-gen-2.1.03.tar.gz" sha256 "4e9cf9d81eed573281fc69303fc35fe335c931496e7a403a7ea88d9b74c05d6f" bottle do root_url "https://ghcr.io/v2/brewsci/bio" rebuild 1 sha256 cellar: :any_skip_relocation, x86_64_linux: "417c706403a1d0444c84c2b295bf06e59f166e8fd5007fc13b644bcd3e646941" end depends_on "autoconf" => :build depends_on "automake" => :build depends_on :linux def install # unknown symbol getpid() inreplace "src/main.cpp", "", "" # exit(EXIT_FAILURE) not declared inreplace "src/trace.h", "", "\n#include " system "./configure", "--prefix=#{prefix}" system "make", "install" # remove Mac fork files... rm Dir["data/._*"] pkgshare.install "data" doc.install "doc/iSGv2_manual.pdf" end test do assert_match "heterogeneity", shell_output("#{bin}/indel-seq-gen -h 2>&1") end end