aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorRui Pereira2011-12-22 16:44:48 +0100
committerAdam Vandenberg2012-03-19 22:37:46 -0700
commit9107bf8420ff5daaf62a95a3b2d8b859872cac23 (patch)
tree5fe3b05bc7602a7ca35b7762f440c4ded64cc4a7 /Library
parent861a71ebd58eb5169ee9ddb51514f9b35f61b77c (diff)
downloadhomebrew-9107bf8420ff5daaf62a95a3b2d8b859872cac23.tar.bz2
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>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/xpa.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/xpa.rb b/Library/Formula/xpa.rb
new file mode 100644
index 000000000..44f3e4015
--- /dev/null
+++ b/Library/Formula/xpa.rb
@@ -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