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

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

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