homebrew-core/Formula/narwhal.rb

16 lines
358 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Narwhal < Formula
2012-02-12 23:31:15 +00:00
homepage 'http://www.narwhaljs.org/'
url 'https://github.com/280north/narwhal/tarball/v0.3.2'
md5 'c5f8c0af38b79a7a7b827d3f05f79e21'
2011-05-27 05:02:55 +00:00
head 'https://github.com/280north/narwhal.git'
def install
rm Dir['bin/*.cmd']
libexec.install Dir['*']
2012-02-12 23:31:15 +00:00
bin.install_symlink Dir["#{libexec}/bin/*"]
end
end