d297d66029
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>
17 lines
463 B
Ruby
17 lines
463 B
Ruby
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
|