3ad9a0896f
The `brew audit` check complains about the older /tarball/ URL scheme. Update formulae to use the new /archive/ URL and update the SHA to match. Closes Homebrew/homebrew#18813. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
364 B
Ruby
15 lines
364 B
Ruby
require 'formula'
|
|
|
|
class CssCrush < Formula
|
|
homepage 'http://the-echoplex.net/csscrush'
|
|
url 'https://github.com/peteboere/css-crush/archive/v1.9.1.tar.gz'
|
|
sha1 '7d3a8a46981a2cd6d402d44bd903f82b0284454c'
|
|
|
|
def install
|
|
libexec.install Dir['*']
|
|
(bin+'csscrush').write <<-EOS.undent
|
|
#!/bin/sh
|
|
php "#{libexec}/cli.php" "$@"
|
|
EOS
|
|
end
|
|
end
|