diff options
| author | Tony Garnock-Jones | 2010-01-29 16:12:49 +1300 |
|---|---|---|
| committer | Adam Vandenberg | 2010-05-24 10:52:33 -0700 |
| commit | 2234784bdf7085f3d4dbb678296a47dddd0d6d19 (patch) | |
| tree | e37b329fac527bc3f90f65b563ff82bbb1d2e25d /Library/Formula | |
| parent | cc853df4c81b195af519f985f96d97995eb0481d (diff) | |
| download | homebrew-2234784bdf7085f3d4dbb678296a47dddd0d6d19.tar.bz2 | |
Add sitecopy
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/sitecopy.rb | 12 |
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 |
