aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/css-crush.rb
blob: 49e2d17507b7918106541ec05275f499862eac8f (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.7'
  sha1 '44a29abccc55f8a098bc381138cb03280dd9c2a7'

  def install
    libexec.install Dir['*']
    (bin+'csscrush').write <<-EOS.undent
      #!/bin/sh
      php "#{libexec}/cli.php" "$@"
    EOS
  end
end