blob: b201c4e13dee8da20faafcb9a94e3a396d6a416e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Httrack < Formula
homepage 'http://www.httrack.com/'
url 'http://download.httrack.com/httrack-3.45.4.tar.gz'
md5 '3e5499d63f2fe777878515377fad077a'
def install
ENV.deparallelize
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-shared=no"
system "make install"
# Don't need Gnome integration
rm_rf share+'applications'
rm_rf share+'pixmaps'
end
end
|