blob: 949013275cf97f37204eda424641b282f8f756de (
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/archive/67754f619d0562f583dc5e869d2c05c0af21aca9.tar.gz'
version '2013-02-25'
sha1 '71633539862e0ab68ed74a92127304794ec8bfa9'
def install
system 'cc jsmin.c -o jsmin'
bin.install 'jsmin'
end
end
|