aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/httrack.rb16
1 files changed, 7 insertions, 9 deletions
diff --git a/Library/Formula/httrack.rb b/Library/Formula/httrack.rb
index 3504552f7..e42726cf2 100644
--- a/Library/Formula/httrack.rb
+++ b/Library/Formula/httrack.rb
@@ -1,19 +1,17 @@
-require 'formula'
+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.48.14.tar.gz'
- sha1 'f764290fa4394bd5035bfebde6b05b2d54c662f9'
+ homepage "http://www.httrack.com/"
+ # 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.48.19.tar.gz"
+ sha1 "7df386a248444c599948dbc77ed705b101151ed4"
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'
+ rm_rf Dir["#{share}/{applications,pixmaps}"]
end
end