aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/irods.rb
blob: b4cbc13cc132311f7f785a71ba14aa0520647323 (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
require "formula"

class Irods < Formula
  homepage "https://www.irods.org"
  url "https://github.com/irods/irods-legacy/archive/3.3.1.tar.gz"
  sha1 "c5d1b3acc1ec58a51466437afbddd2ab46cb1e8f"

  conflicts_with "sleuthkit", :because => "both install `ils`"

  option "with-osxfuse", "Install iRODS FUSE client"

  depends_on :osxfuse => :optional

  def install
    chdir "iRODS"
    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}

    # patch in order to use osxfuse
    if build.with? "osxfuse"
      inreplace "config/config.mk", "# IRODS_FS = 1", "IRODS_FS = 1"
      inreplace "config/config.mk", "fuseHomeDir=/home/mwan/adil/fuse-2.7.0", "fuseHomeDir=#{HOMEBREW_PREFIX}"
      chdir "clients/fuse" do
        inreplace "Makefile", "lfuse", "losxfuse"
        inreplace "Makefile", "-I$(fuseHomeDir)/include", "-I$(fuseHomeDir)/include/osxfuse"
        system "make"
      end
      bin.install Dir["clients/fuse/bin/*"].select {|f| File.executable? f}
    end
  end

  test do
    system "#{bin}/ipwd"
  end
end