2010-01-14 20:37:13 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Narwhal < Formula
|
2010-11-09 03:21:41 +00:00
|
|
|
url 'https://github.com/280north/narwhal/tarball/v0.3.2'
|
|
|
|
md5 'c5f8c0af38b79a7a7b827d3f05f79e21'
|
2010-01-14 20:37:13 +00:00
|
|
|
homepage 'http://www.narwhaljs.org/'
|
|
|
|
|
2011-05-27 05:02:55 +00:00
|
|
|
head 'https://github.com/280north/narwhal.git'
|
2010-11-09 03:21:41 +00:00
|
|
|
|
2010-01-14 20:37:13 +00:00
|
|
|
def install
|
|
|
|
rm Dir['bin/*.cmd']
|
|
|
|
libexec.install Dir['*']
|
|
|
|
bin.mkpath
|
|
|
|
Dir["#{libexec}/bin/*"].each { |d| ln_s d, bin }
|
|
|
|
end
|
|
|
|
end
|