2010-07-02 18:11:38 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Httrack < Formula
|
2012-02-01 21:42:53 +00:00
|
|
|
url 'http://download.httrack.com/httrack-3.44.4.tar.gz'
|
2010-07-02 18:11:38 +00:00
|
|
|
homepage 'http://www.httrack.com/'
|
2012-02-01 21:42:53 +00:00
|
|
|
md5 '614b7124b887c543fc10545b994b2814'
|
2010-07-02 18:11:38 +00:00
|
|
|
|
|
|
|
def install
|
2010-07-29 21:43:15 +00:00
|
|
|
ENV.deparallelize
|
2010-07-02 18:11:38 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-shared=no"
|
|
|
|
system "make install"
|
|
|
|
# Don't need Gnome integration
|
2010-04-07 05:58:35 +00:00
|
|
|
rm_rf share+'applications'
|
|
|
|
rm_rf share+'pixmaps'
|
2010-07-02 18:11:38 +00:00
|
|
|
end
|
|
|
|
end
|