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>
This commit is contained in:
Tjerk Smits 2012-05-29 23:51:27 +02:00 committed by Adam Vandenberg
parent 599200d865
commit cfca96dded

15
Formula/tn5250.rb Normal file
View file

@ -0,0 +1,15 @@
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