xpa 2.1.13

The XPA messaging system provides seamless
communication between many kinds of Unix
programs, including X programs and Tcl/Tk programs.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Rui Pereira 2011-12-22 16:44:48 +01:00 committed by Adam Vandenberg
parent 7064b2d308
commit d297d66029

17
Formula/xpa.rb Normal file
View file

@ -0,0 +1,17 @@
require 'formula'
class Xpa < Formula
homepage 'http://hea-www.harvard.edu/RD/xpa/'
url 'http://hea-www.harvard.edu/saord/download/xpa/xpa-2.1.13.tar.gz'
md5 '052053e329a8a03fa6f512f9aadf4828'
def install
ENV.x11
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
# relocate man, since --mandir is ignored
mv "#{prefix}/man", man
end
end