homebrew-core/Formula/httrack.rb
Christopher Gateley de7953488a httrack 3.46.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-07-01 20:25:52 -07:00

18 lines
507 B
Ruby

require 'formula'
class Httrack < Formula
homepage 'http://www.httrack.com/'
url 'http://download.httrack.com/httrack-3.46.1.tar.gz'
sha1 'be6328d2ff3cbabd21426b7acc54edcf1ebb76e0'
def install
ENV.deparallelize
system "./configure", "--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