Formula for httrack website copier.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
05e0be4aae
commit
78d82376d1
1 changed files with 18 additions and 0 deletions
18
Formula/httrack.rb
Normal file
18
Formula/httrack.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
require 'formula'
|
||||
|
||||
class Httrack <Formula
|
||||
url 'http://download.httrack.com/cserv.php3?File=httrack.tar.gz'
|
||||
homepage 'http://www.httrack.com/'
|
||||
md5 'd52539dfa39ee9bd2593ba44e2b3e149'
|
||||
version '3.43-9C'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--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
|
Loading…
Reference in a new issue