2010-07-02 18:11:38 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Httrack < Formula
|
2010-07-02 18:11:38 +00:00
|
|
|
homepage 'http://www.httrack.com/'
|
2012-05-03 09:12:08 +00:00
|
|
|
url 'http://download.httrack.com/httrack-3.45.4.tar.gz'
|
|
|
|
md5 '3e5499d63f2fe777878515377fad077a'
|
2010-07-02 18:11:38 +00:00
|
|
|
|
|
|
|
def install
|
2010-07-29 21:43:15 +00:00
|
|
|
ENV.deparallelize
|
2012-02-11 21:24:37 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2010-07-02 18:11:38 +00:00
|
|
|
"--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
|