aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/narwhal.rb
blob: f95572f61437b5f0918d312aa2371a6775d05c44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Narwhal < Formula
  homepage 'https://github.com/280north/narwhal'
  url 'https://github.com/280north/narwhal/archive/v0.3.2.tar.gz'
  sha1 'c93c6ad673e9e58642c1a46f493e16fc808bce60'

  head 'https://github.com/280north/narwhal.git'

  def install
    rm Dir['bin/*.cmd']
    libexec.install Dir['*']
    bin.install_symlink Dir["#{libexec}/bin/*"]
  end
end