homebrew-core/Formula/jsmin.rb
Andrew Janke 3ad9a0896f Change github /tarball/ URLs to /archive/ for formulae A-K
The `brew audit` check complains about the older /tarball/ URL scheme. Update
formulae to use the new /archive/ URL and update the SHA to match.

Closes Homebrew/homebrew#18813.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-28 21:02:11 -07:00

13 lines
362 B
Ruby

require 'formula'
class Jsmin < Formula
homepage 'http://www.crockford.com/javascript/jsmin.html'
url 'https://github.com/douglascrockford/JSMin/archive/8f62fe05856935ddcd49e364502ed98c4cf555b8.tar.gz'
version '2008-08-03'
sha1 '7909b2574255ebd2df46f847e2ec9ef60a56933d'
def install
system 'cc jsmin.c -o jsmin'
bin.install 'jsmin'
end
end