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:
parent
7064b2d308
commit
d297d66029
1 changed files with 17 additions and 0 deletions
17
Formula/xpa.rb
Normal file
17
Formula/xpa.rb
Normal 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
|
Loading…
Reference in a new issue