2010-11-09 17:49:48 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Jsmin < Formula
|
2010-11-09 17:49:48 +00:00
|
|
|
homepage 'http://www.crockford.com/javascript/jsmin.html'
|
2013-03-29 01:03:20 +00:00
|
|
|
url 'https://github.com/douglascrockford/JSMin/archive/8f62fe05856935ddcd49e364502ed98c4cf555b8.tar.gz'
|
2010-11-09 17:49:48 +00:00
|
|
|
version '2008-08-03'
|
2013-03-29 01:03:20 +00:00
|
|
|
sha1 '7909b2574255ebd2df46f847e2ec9ef60a56933d'
|
2010-11-09 17:49:48 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system 'cc jsmin.c -o jsmin'
|
|
|
|
bin.install 'jsmin'
|
|
|
|
end
|
|
|
|
end
|