aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorTony Garnock-Jones2010-01-29 16:12:49 +1300
committerAdam Vandenberg2010-05-24 10:52:33 -0700
commit2234784bdf7085f3d4dbb678296a47dddd0d6d19 (patch)
treee37b329fac527bc3f90f65b563ff82bbb1d2e25d /Library
parentcc853df4c81b195af519f985f96d97995eb0481d (diff)
downloadhomebrew-2234784bdf7085f3d4dbb678296a47dddd0d6d19.tar.bz2
Add sitecopy
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/sitecopy.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/sitecopy.rb b/Library/Formula/sitecopy.rb
new file mode 100644
index 000000000..7dd3236cd
--- /dev/null
+++ b/Library/Formula/sitecopy.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Sitecopy <Formula
+ url 'http://www.manyfish.co.uk/sitecopy/sitecopy-0.16.6.tar.gz'
+ homepage 'http://www.manyfish.co.uk/sitecopy/'
+ md5 'b3aeb5a5f00af3db90b408e8c32a6c01'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end