aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/httrack.rb
diff options
context:
space:
mode:
authorDaniel Salber2010-07-02 20:11:38 +0200
committerAdam Vandenberg2010-07-02 19:09:32 -0700
commit5c304e8e6c34fde6360eb87ce7a9ee42c7c200f0 (patch)
treeedceaa597fc65551ae1ebc0fbe5edfa3fe5259e2 /Library/Formula/httrack.rb
parent818be3a9ebda9dc3c38a014a011835a68b3fe3d2 (diff)
downloadhomebrew-5c304e8e6c34fde6360eb87ce7a9ee42c7c200f0.tar.bz2
Formula for httrack website copier.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/httrack.rb')
-rw-r--r--Library/Formula/httrack.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/httrack.rb b/Library/Formula/httrack.rb
new file mode 100644
index 000000000..f102ecc70
--- /dev/null
+++ b/Library/Formula/httrack.rb
@@ -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