homebrew-core/Formula/irods.rb
2019-01-25 14:41:44 +00:00

40 lines
1.4 KiB
Ruby

class Irods < Formula
desc "Integrated data grid software solution"
homepage "https://irods.org/"
url "https://github.com/irods/irods-legacy/archive/3.3.1.tar.gz"
sha256 "e34e7be8646317d5be1c84e680d8f59d50a223ea25a3c9717b6bf7b57df5b9f6"
revision 1
bottle do
cellar :any
sha256 "7a193087877972f11192698db37cbeb220f2e9a167210a85520ac132f0ff3e8c" => :mojave
sha256 "5ca48b1240e083236086127b0f8d5fdd64ad3bcf023ced6c684d04945b8555a1" => :high_sierra
sha256 "22a5e9bf24a034976491b65af9b36c4311afa16612f072655c556fba7285112b" => :sierra
sha256 "510a0c5691702971c670c57c9ed11c5ca9371139b50c623cc950c0f8391a9737" => :el_capitan
sha256 "490adc71118dc93c087aa685ddb873c3670575c679c834adc0a95c0b013772bc" => :yosemite
sha256 "5d77816c581d12c4c30eb247e9b4a05f096347aa42ff4c069fa9aeff94678f87" => :mavericks
end
depends_on "openssl"
conflicts_with "sleuthkit", :because => "both install `ils`"
conflicts_with "renameutils",
:because => "both install `icp` and `imv` binaries"
def install
cd "iRODS" do
system "./scripts/configure"
# include PAM authentication by default
inreplace "config/config.mk", "# PAM_AUTH = 1", "PAM_AUTH = 1"
inreplace "config/config.mk", "# USE_SSL = 1", "USE_SSL = 1"
system "make"
bin.install Dir["clients/icommands/bin/*"].select { |f| File.executable? f }
end
end
test do
system "#{bin}/ipwd"
end
end