2012-02-10 16:42:42 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class CssCrush < Formula
|
|
|
|
homepage 'http://the-echoplex.net/csscrush'
|
2013-05-22 02:06:00 +00:00
|
|
|
url 'https://github.com/peteboere/css-crush/archive/v1.10.tar.gz'
|
|
|
|
sha1 'aa8b0f495aad298c3bf90edc271741d30271917a'
|
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
|