homebrew-core/Formula/clay.rb
castFromVoidPtr fa937516f6 Clay: Use current binary and homepage URLs
The Clay homepage has moved to http://claylabs.com/clay/. The claylanguage.org
hostname still redirects to the old site, so that should be changed as well.

Closes Homebrew/homebrew#8935.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-12-02 11:25:41 -08:00

13 lines
287 B
Ruby

require 'formula'
class Clay < Formula
url 'http://claylabs.com/clay/binaries/clay-macosx-2011.04.18.zip'
homepage 'http://claylabs.com/clay/'
md5 '9f43d8147f95ce0d7c3cd12e368406a4'
def install
libexec.install Dir['*']
bin.mkpath
ln_s libexec+'clay', bin
end
end