blob: 1587dc4228087922c5e195fef1217e0819a42dbd (
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/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
|