surfraw 2.2.7
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
2010-05-11 03:04:34 +00:00
|
|
|
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
|
2010-05-12 16:51:05 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
2010-04-07 05:58:35 +00:00
|
|
|
"--sysconfdir=#{etc}",
|
|
|
|
"--with-graphical-browser=open"
|
surfraw 2.2.7
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
2010-05-11 03:04:34 +00:00
|
|
|
system "make"
|
|
|
|
ENV.j1 # Install using 1 job, or fails on Mac Pro
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|