homebrew-core/Formula/httrack.rb
Stanou49-01 a44dca7511 httrack 3.47.27
Closes Homebrew/homebrew#22743.

Signed-off-by: Xiyue Deng <manphiz@gmail.com>
2013-09-22 15:29:05 -07:00

19 lines
600 B
Ruby

require 'formula'
class Httrack < Formula
homepage 'http://www.httrack.com/'
# url: Always use mirror.httrack.com when you link to a new version
# of HTTrack, as link to download.httrack.com will break on next
# HTTrack update.
url 'http://mirror.httrack.com/historical/httrack-3.47.27.tar.gz'
sha1 'cae1c6c02d2c59dc62e7abdbc6240414b764d292'
def install
ENV.deparallelize
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
# Don't need Gnome integration
rm_rf share+'applications'
rm_rf share+'pixmaps'
end
end