aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/elinks.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/elinks.rb b/Library/Formula/elinks.rb
new file mode 100644
index 000000000..279f40199
--- /dev/null
+++ b/Library/Formula/elinks.rb
@@ -0,0 +1,13 @@
+require 'brewkit'
+
+class Elinks <Formula
+ @homepage='http://elinks.or.cz/'
+ @url='http://elinks.or.cz/download/elinks-0.11.7.tar.bz2'
+ @md5='fcd087a6d2415cd4c6fd1db53dceb646'
+
+ def install
+ ENV.deparallelize
+ system "./configure --prefix='#{prefix}'"
+ system "make install"
+ end
+end