aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/surfraw.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/surfraw.rb b/Library/Formula/surfraw.rb
new file mode 100644
index 000000000..ace6d7609
--- /dev/null
+++ b/Library/Formula/surfraw.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Surfraw <Formula
+ url 'http://surfraw.alioth.debian.org/dist/surfraw-2.2.7.tar.gz'
+ homepage 'http://surfraw.alioth.debian.org/'
+ md5 '213010e9b7c8478827e8903530cf7787'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make"
+ ENV.j1 # Install using 1 job, or fails on Mac Pro
+ system "make install"
+ end
+end