diff options
| author | Pete Boere | 2012-02-10 16:42:42 +0000 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-21 06:45:57 -0700 |
| commit | 92598b88709065d14a66ebaefa80993fc6d5d587 (patch) | |
| tree | 364233b58542da54b9779680df77ce82e576fc85 /Library/Formula | |
| parent | a1a0de4c290628116e430d20b9fb220614664d5b (diff) | |
| download | homebrew-92598b88709065d14a66ebaefa80993fc6d5d587.tar.bz2 | |
csscrush 1.4.1
Closes #10098.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/css-crush.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/css-crush.rb b/Library/Formula/css-crush.rb new file mode 100644 index 000000000..e24cd95fd --- /dev/null +++ b/Library/Formula/css-crush.rb @@ -0,0 +1,15 @@ +require 'formula' + +class CssCrush < Formula + homepage 'http://the-echoplex.net/csscrush' + url 'https://github.com/peteboere/css-crush/zipball/v1.4.1' + md5 '10c03ffce864cd8cbf40256179a8592e' + + def install + libexec.install Dir['*'] + (bin+'csscrush').write <<-EOS.undent + #!/bin/sh + php "#{libexec}/cli.php" "$@" + EOS + end +end |
