2010-03-06 22:53:17 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class CoffeeScript < Formula
|
2011-04-13 22:10:24 +00:00
|
|
|
url 'https://github.com/jashkenas/coffee-script/tarball/1.0.1'
|
2010-06-29 00:48:45 +00:00
|
|
|
head 'git://github.com/jashkenas/coffee-script.git'
|
|
|
|
homepage 'http://jashkenas.github.com/coffee-script/'
|
2011-04-13 22:10:24 +00:00
|
|
|
md5 '653f5eecedf84cc8293a80f90b53247f'
|
2010-03-06 22:53:17 +00:00
|
|
|
|
|
|
|
# head coffee-script usually depends on head node and
|
|
|
|
# since there isn't a way to specify that just remove
|
|
|
|
# the depends_on
|
2010-04-07 05:58:35 +00:00
|
|
|
depends_on 'node' unless ARGV.build_head?
|
2010-03-06 22:53:17 +00:00
|
|
|
|
2010-11-07 19:34:01 +00:00
|
|
|
def install
|
|
|
|
bin.mkpath
|
|
|
|
system "./bin/cake", "--prefix", prefix, "install"
|
|
|
|
end
|
|
|
|
|
2010-08-09 16:13:58 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
coffee-script can also be installed via `npm install coffee-script`.
|
|
|
|
This has the advantage of supporting multiple versions (of any Node libs)
|
2010-11-07 19:34:01 +00:00
|
|
|
at the same time.
|
|
|
|
|
|
|
|
Since coffee-script syntax changed pretty drastically between 0.7.2 and
|
|
|
|
0.9.x, you may want to install it via npm instead.
|
2010-03-06 22:53:17 +00:00
|
|
|
|
2010-08-09 16:13:58 +00:00
|
|
|
This formula may be retired from a future version of Homebrew.
|
2010-03-06 22:53:17 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|