13 lines
355 B
Ruby
13 lines
355 B
Ruby
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
|