aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/httrack.rb
blob: ff169486a1bb10bef3e1b767fc9e8300f3062f9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Httrack < Formula
  url 'http://download.httrack.com/httrack-3.44.4.tar.gz'
  homepage 'http://www.httrack.com/'
  md5 '614b7124b887c543fc10545b994b2814'

  def install
    ENV.deparallelize
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--enable-shared=no"
    system "make install"
    # Don't need Gnome integration
    rm_rf share+'applications'
    rm_rf share+'pixmaps'
  end
end