homebrew-core/Formula/narwhal.rb

16 lines
384 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Narwhal < Formula
2012-06-04 01:20:24 +00:00
homepage 'https://github.com/280north/narwhal'
url 'https://github.com/280north/narwhal/archive/v0.3.2.tar.gz'
sha1 'c93c6ad673e9e58642c1a46f493e16fc808bce60'
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