aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/surfraw.rb
blob: 5c0e32e9467605f3e79c2bc09874a2a574a6a54a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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}",
      "--sysconfdir=#{etc}",
      "--with-graphical-browser=open"
    system "make"
    ENV.j1 # Install using 1 job, or fails on Mac Pro
    system "make install"
  end
end