aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jed.rb
diff options
context:
space:
mode:
authorFrank DENIS2010-07-14 10:49:24 +0200
committerAdam Vandenberg2010-07-14 07:20:41 -0700
commit394dbe53f110da6fc3c202737977c022dd2d761b (patch)
tree60a768e6592aba52d93006d0e293bf156da808bf /Library/Formula/jed.rb
parent8011f97f311df00e7cf1aac86c606f5726d6b2de (diff)
downloadhomebrew-394dbe53f110da6fc3c202737977c022dd2d761b.tar.bz2
Add a formula for the Jed editor.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/jed.rb')
-rw-r--r--Library/Formula/jed.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/jed.rb b/Library/Formula/jed.rb
new file mode 100644
index 000000000..9bbcd9589
--- /dev/null
+++ b/Library/Formula/jed.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Jed <Formula
+ url 'ftp://space.mit.edu/pub/davis/jed/v0.99/jed-0.99-19.tar.bz2'
+ homepage 'http://www.jedsoft.org/jed/'
+ md5 'c9b2f58a3defc6f61faa1ce7d6d629ea'
+
+ depends_on 's-lang'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make"
+
+ ENV.deparallelize
+ system "make install"
+ end
+end