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

class Httrack <Formula
  url 'http://download.httrack.com/cserv.php3?File=httrack.tar.gz'
  homepage 'http://www.httrack.com/'
  md5 'd52539dfa39ee9bd2593ba44e2b3e149'
  version '3.43-9C'

  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