blob: 861d89b773e6e30426546945032d6fa11758d703 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class CssCrush < Formula
homepage 'http://the-echoplex.net/csscrush'
url 'https://github.com/peteboere/css-crush/tarball/v1.9.1'
sha1 '49232600b4a76ed4b659108051856862b04e9044'
def install
libexec.install Dir['*']
(bin+'csscrush').write <<-EOS.undent
#!/bin/sh
php "#{libexec}/cli.php" "$@"
EOS
end
end
|