499908cf5d
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
355 B
Ruby
15 lines
355 B
Ruby
require 'formula'
|
|
|
|
class CssCrush < Formula
|
|
homepage 'http://the-echoplex.net/csscrush'
|
|
url 'https://github.com/peteboere/css-crush/tarball/v1.7'
|
|
sha1 '44a29abccc55f8a098bc381138cb03280dd9c2a7'
|
|
|
|
def install
|
|
libexec.install Dir['*']
|
|
(bin+'csscrush').write <<-EOS.undent
|
|
#!/bin/sh
|
|
php "#{libexec}/cli.php" "$@"
|
|
EOS
|
|
end
|
|
end
|