homebrew-core/Formula/fasd.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

12 lines
264 B
Ruby

require 'formula'
class Fasd < Formula
homepage 'https://github.com/clvv/fasd'
url 'https://github.com/clvv/fasd/archive/1.0.1.tar.gz'
sha1 'aeb3f9c6f8f9e4355016e3255429bcad5c7a5689'
def install
bin.install 'fasd'
man1.install 'fasd.1'
end
end