aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-08-22 23:38:00 -0500
committerJack Nagel2014-08-22 23:38:00 -0500
commitacc4cd945cf4701b457fcfdda5d6517337f3fd76 (patch)
tree63e001c2c599ce3cd7f23d47bb2cfc4a9b7f80c4 /Library/Formula
parentc5f7add48d81bfa28cd1b114852e551f5aa8f292 (diff)
downloadhomebrew-acc4cd945cf4701b457fcfdda5d6517337f3fd76.tar.bz2
httrack 3.48.19
Diffstat (limited to 'Library/Formula')
-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