homebrew-core/Formula/httrack.rb
2013-04-21 18:45:03 -07:00

18 lines
507 B
Ruby

require 'formula'
class Httrack < Formula
homepage 'http://www.httrack.com/'
url 'http://download.httrack.com/httrack-3.47.2.tar.gz'
sha1 '459eee3d676576ec062e9e73f91592dc39efd5bc'
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