blob: 520e28086f1cd1bd2fc4035508e0a31597eecebc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Httrack < Formula
homepage 'http://www.httrack.com/'
url 'http://download.httrack.com/httrack-3.47.6.tar.gz'
sha1 'bdf726de2b0838c9823dc4e77f4fb4791374ba44'
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'
end
end
|