6944b46a91
Closes Homebrew/homebrew#19911. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
19 lines
600 B
Ruby
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.12.tar.gz'
|
|
sha1 'e4b6671da0170bb219ec4aa74167bae449dd105e'
|
|
|
|
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
|