aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jsmin.rb
blob: 72826859e8636557ec843564a09db572655d435c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Jsmin < Formula
  homepage 'http://www.crockford.com/javascript/jsmin.html'
  url 'https://github.com/douglascrockford/JSMin/tarball/8f62fe05856935ddcd49e364502ed98c4cf555b8'
  version '2008-08-03'
  sha1 'b2a620042c97a8d9cc0be18b86ff9e62e8405806'

  def install
    system 'cc jsmin.c -o jsmin'
    bin.install 'jsmin'
  end
end