aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorEphemera2015-04-08 18:08:59 +0900
committerMike McQuaid2015-04-08 13:55:43 +0100
commit523baee365b42bfbbb802b0d2c9952c924888ac1 (patch)
tree762c548a44f72a0a10b72cab3475019cc400516c /Library/Formula
parentb664ef32ffc5162f0a8e871a5186a988edbceaf2 (diff)
downloadhomebrew-523baee365b42bfbbb802b0d2c9952c924888ac1.tar.bz2
httrack 3.48.21
Closes #38456. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/httrack.rb15
1 files changed, 4 insertions, 11 deletions
diff --git a/Library/Formula/httrack.rb b/Library/Formula/httrack.rb
index 0370a9d3e..7484dc02a 100644
--- a/Library/Formula/httrack.rb
+++ b/Library/Formula/httrack.rb
@@ -1,23 +1,16 @@
-require "formula"
-
class Httrack < Formula
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"
+ url "http://mirror.httrack.com/historical/httrack-3.48.21.tar.gz"
+ sha1 "a19564393ced4b2e22ab685201cbd5a1d6983930"
- # Fix building on systems without strnlen; fixed upstream, will be in next release
- # https://code.google.com/p/httrack/issues/detail?id=54
- patch :p0 do
- url "https://gist.githubusercontent.com/mistydemeo/5c50bba4be6c4f53d50c/raw/9465c915719106dbe234380f769c45ae3e118edb/httrack-strnlen.diff"
- sha1 "206b0c3f00a8274eb01b04fb7f11b0339423332b"
- end
+ depends_on "openssl"
def install
ENV.deparallelize
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
- system "make install"
+ system "make", "install"
# Don't need Gnome integration
rm_rf Dir["#{share}/{applications,pixmaps}"]
end