c8c7354770
Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Install everything to libexec and link in the binaries
13 lines
276 B
Ruby
13 lines
276 B
Ruby
require 'formula'
|
|
|
|
class Narwhal <Formula
|
|
head 'git://github.com/tlrobinson/narwhal.git'
|
|
homepage 'http://www.narwhaljs.org/'
|
|
|
|
def install
|
|
rm Dir['bin/*.cmd']
|
|
libexec.install Dir['*']
|
|
bin.mkpath
|
|
Dir["#{libexec}/bin/*"].each { |d| ln_s d, bin }
|
|
end
|
|
end
|