599016ad2c
Surfraw provides a fast unix command line interface to a variety of popular WWW search engines and other artifacts of power. It reclaims google, altavista, babelfish, dejanews, freshmeat, research index, slashdot and many others from the false-prophet, pox-infested heathen lands of html-forms, placing these wonders where they belong, deep in unix heartland, as god loving extensions to the shell. Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Remove unused configure switches * Must "make install" using j1 on Mac Pro
14 lines
367 B
Ruby
14 lines
367 B
Ruby
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
|