homebrew-core/Formula/tn5250.rb
Tjerk Smits cfca96dded tn5250 0.17.4
The tn5250 program can be used to connect to AS/400,
iSeries or IBM i.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-05-30 20:19:38 -07:00

15 lines
433 B
Ruby

require 'formula'
class Tn5250 < Formula
homepage 'http://tn5250.sourceforge.net/'
url 'http://sourceforge.net/projects/tn5250/files/tn5250/0.17.4/tn5250-0.17.4.tar.gz'
md5 'd1eb7c5a2e15cd2f43a1c115e2734153'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
system "make clean"
end
end