From f9edc7a3f984fa27a22194b931903ccc5fb85f07 Mon Sep 17 00:00:00 2001 From: Rui Pereira Date: Wed, 12 Dec 2012 13:53:51 +0100 Subject: iRODS 3.2 Closes #16549. Signed-off-by: Adam Vandenberg --- Library/Formula/irods.rb | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Library/Formula/irods.rb (limited to 'Library') diff --git a/Library/Formula/irods.rb b/Library/Formula/irods.rb new file mode 100644 index 000000000..7f09526a7 --- /dev/null +++ b/Library/Formula/irods.rb @@ -0,0 +1,33 @@ +require 'formula' + +class Irods < Formula + homepage 'https://www.irods.org' + url 'https://www.irods.org/cgi-bin/upload16.cgi/irods3.2.tgz' + sha1 'd1dd7787e69cfda96b7719af2e50ffbc68485a23' + + option 'with-fuse', 'Install iRODS FUSE client' + + depends_on 'fuse4x' if build.include? 'with-fuse' + + def install + system "./scripts/configure" + system "make" + + bin.install Dir['clients/icommands/bin/*'].select {|f| File.executable? f} + + # patch in order to use fuse4x + if build.include? 'with-fuse' + 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', 'lfuse4x' + system "make" + end + bin.install Dir['clients/fuse/bin/*'].select {|f| File.executable? f} + end + end + + def test + system "#{bin}/ipwd" + end +end -- cgit v1.2.3