blob: a17d3abbf917c056d52a9a71f1d9e9b86a6f2812 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | require 'formula'
class Narwhal < Formula
  homepage 'https://github.com/280north/narwhal'
  head 'https://github.com/280north/narwhal.git'
  url 'https://github.com/280north/narwhal/archive/v0.3.2.tar.gz'
  sha1 'c93c6ad673e9e58642c1a46f493e16fc808bce60'
  conflicts_with 'spidermonkey', :because => 'both install a js binary'
  def install
    rm Dir['bin/*.cmd']
    libexec.install Dir['*']
    bin.install_symlink Dir["#{libexec}/bin/*"]
  end
end
 |