diff options
| author | Mike McQuaid | 2014-12-25 22:16:29 +0000 | 
|---|---|---|
| committer | Mike McQuaid | 2014-12-27 11:09:32 +0000 | 
| commit | 43882a26b5f15da065ccb32dac0b78622ba026e1 (patch) | |
| tree | 4acb8242bc9701bae5ea3b921b9e93121ae862cf /Library/Formula/x3270.rb | |
| parent | 995ee81399c5d056d26cfe531fd43dad3408e603 (diff) | |
| download | homebrew-43882a26b5f15da065ccb32dac0b78622ba026e1.tar.bz2 | |
Migrate some formula with hard-X11 dependencies.
We have the homebrew-x11 tap for this reason so let's migrate everything
without any reverse dependencies. Ideally I'd also like to migrate
everything that's :recommended and the GTK formulae through there too
(or to a dedicated homebrew-gtk).
Diffstat (limited to 'Library/Formula/x3270.rb')
| -rw-r--r-- | Library/Formula/x3270.rb | 38 | 
1 files changed, 0 insertions, 38 deletions
diff --git a/Library/Formula/x3270.rb b/Library/Formula/x3270.rb deleted file mode 100644 index cb185c965..000000000 --- a/Library/Formula/x3270.rb +++ /dev/null @@ -1,38 +0,0 @@ -require "formula" - -class X3270 < Formula -  homepage "http://x3270.bgp.nu/" -  url "https://downloads.sourceforge.net/project/x3270/x3270/3.3.15ga8/suite3270-3.3.15ga8-src.tgz" -  sha1 "c53d4cb7bd961f4114539495c46ffdab45303f77" - -  bottle do -    sha1 "bc56bef330ed5179723cb3cda669492b89b8a705" => :yosemite -    sha1 "1e317cde1f0bf755057b6189972f57b8432ccce6" => :mavericks -    sha1 "f31aa130ccc0bd377309fdc1b91c4fa8a5004ba4" => :mountain_lion -  end - -  depends_on :x11 -  depends_on "openssl" - -  option "with-c3270", "Include c3270 (curses-based version)" -  option "with-s3270", "Include s3270 (displayless version)" -  option "with-tcl3270", "Include tcl3270 (integrated with Tcl)" -  option "with-pr3287", "Include pr3287 (printer emulation)" - -  def make_directory(directory) -    cd directory do -      system "./configure", "--prefix=#{prefix}" -      system "make" -      system "make install" -      system "make install.man" -    end -  end - -  def install -    make_directory "x3270-3.3" -    make_directory "c3270-3.3" if build.with? "c3270" -    make_directory "pr3287-3.3" if build.with? "pr3287" -    make_directory "s3270-3.3" if build.with? "s3270" -    make_directory "tcl3270-3.3" if build.with? "tcl3270" -  end -end  | 
