homebrew-core/Formula/httrack.rb

19 lines
498 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Httrack < Formula
homepage 'http://www.httrack.com/'
url 'http://download.httrack.com/httrack-3.45.2.tar.gz'
md5 '2306eff5b283808084be4716c84b9ef5'
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