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'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Surfraw < Formula
|
2012-08-23 04:29:16 +00:00
|
|
|
homepage 'http://surfraw.alioth.debian.org/'
|
2011-09-08 17:27:56 +00:00
|
|
|
url 'http://surfraw.alioth.debian.org/dist/surfraw-2.2.8.tar.gz'
|
2012-08-23 04:29:16 +00:00
|
|
|
sha1 '3114cd6e8d64f87b84ed0eff4369bfb0b10f2eb6'
|
|
|
|
|
2010-12-12 07:58:23 +00:00
|
|
|
head 'git://git.debian.org/surfraw/surfraw.git'
|
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
|
|
|
|
|
|
|
def install
|
2012-08-23 04:29:16 +00:00
|
|
|
system "./prebuild" if build.head?
|
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
|