aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/narwhal.rb
blob: 1b20e522836c862adc16e58b04625d64f7a79088 (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/tarball/v0.3.2'
  sha1 '64865fd335ad5078a32eee4504a98fdd6796199c'

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

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