aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBrett Koonce2014-07-26 09:49:46 -0700
committerBrett Koonce2014-07-26 10:01:13 -0700
commit2b959b497e5ef658cef5d37784a2f7cd959685f5 (patch)
tree01bb882c636ba294d8fc2d8519c927a8aebfba0c /Library/Formula
parentc1f40b34c226e9f7e7fbc68ca2baa2c434bd60b4 (diff)
downloadhomebrew-2b959b497e5ef658cef5d37784a2f7cd959685f5.tar.bz2
x3270 3.3.14ga11
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/x3270.rb26
1 files changed, 13 insertions, 13 deletions
diff --git a/Library/Formula/x3270.rb b/Library/Formula/x3270.rb
index a29f427ed..ce28072ea 100644
--- a/Library/Formula/x3270.rb
+++ b/Library/Formula/x3270.rb
@@ -1,9 +1,9 @@
-require 'formula'
+require "formula"
class X3270 < Formula
- homepage 'http://x3270.bgp.nu/'
- url 'https://downloads.sourceforge.net/project/x3270/x3270/3.3.14ga9/suite3270-3.3.14ga9-src.tgz'
- sha1 '84ccfd84b451adf70e38903dd20850c87832b1da'
+ homepage "http://x3270.bgp.nu/"
+ url "https://downloads.sourceforge.net/project/x3270/x3270/3.3.14ga11/suite3270-3.3.14ga11-src.tgz"
+ sha1 "23bf5b29a2c3c10b935b66a95f666de350ae9c2d"
bottle do
sha1 "53572df34392b38370ef321337ce2741f8c7ca74" => :mavericks
@@ -13,10 +13,10 @@ class X3270 < Formula
depends_on :x11
- 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)'
+ 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
@@ -28,10 +28,10 @@ class X3270 < Formula
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"
+ 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