2012-02-10 16:42:42 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class CssCrush < Formula
|
|
|
|
homepage 'http://the-echoplex.net/csscrush'
|
2012-10-19 21:16:04 +00:00
|
|
|
url 'https://github.com/peteboere/css-crush/tarball/v1.7'
|
|
|
|
sha1 '44a29abccc55f8a098bc381138cb03280dd9c2a7'
|
2012-02-10 16:42:42 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install Dir['*']
|
|
|
|
(bin+'csscrush').write <<-EOS.undent
|
|
|
|
#!/bin/sh
|
|
|
|
php "#{libexec}/cli.php" "$@"
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|