70 lines
1.8 KiB
Ruby
70 lines
1.8 KiB
Ruby
class Nu < Formula
|
|
homepage 'http://programming.nu'
|
|
url 'https://github.com/timburks/nu/archive/v2.1.1.tar.gz'
|
|
sha1 'ca0f9bbd5bbdb8528be516325f274d07d4be54bf'
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "b5abfa521c0983c057820e51e6edad1d2e26c79e" => :yosemite
|
|
sha1 "6f3cc8067845537ef5da9c7b702bba21c61dd86d" => :mavericks
|
|
sha1 "4d21aa4cbc078e3d6d052f65ec9eef3b43f34e64" => :mountain_lion
|
|
end
|
|
|
|
depends_on :macos => :lion
|
|
depends_on 'pcre'
|
|
|
|
fails_with :llvm do
|
|
build 2336
|
|
cause 'nu only builds with clang'
|
|
end
|
|
|
|
fails_with :gcc do
|
|
build 5666
|
|
cause 'nu only builds with clang'
|
|
end
|
|
|
|
# remove deprecated -fobjc-gc
|
|
# https://github.com/timburks/nu/pull/74
|
|
# https://github.com/Homebrew/homebrew/issues/37341
|
|
patch do
|
|
url "https://github.com/timburks/nu/commit/c0b05f1.diff"
|
|
sha256 "f6c1a66e470e7132ba11937c971f9b90824bb03eaa030b3e70004f9d2725c636"
|
|
end
|
|
|
|
def install
|
|
ENV['PREFIX'] = prefix
|
|
|
|
inreplace "Nukefile" do |s|
|
|
s.gsub!('(SH "sudo ', '(SH "') # don't use sudo to install
|
|
s.gsub!('#{@destdir}/Library/Frameworks', '#{@prefix}/Frameworks')
|
|
s.sub! /^;; source files$/, <<-EOS
|
|
;; source files
|
|
(set @framework_install_path "#{frameworks}")
|
|
EOS
|
|
end
|
|
system "make"
|
|
system "./mininush", "tools/nuke"
|
|
bin.mkdir
|
|
lib.mkdir
|
|
include.mkdir
|
|
system "./mininush", "tools/nuke", "install"
|
|
end
|
|
|
|
def caveats
|
|
if self.installed? and File.exist? frameworks+"Nu.framework"
|
|
return <<-EOS.undent
|
|
Nu.framework was installed to:
|
|
#{frameworks}/Nu.framework
|
|
|
|
You may want to symlink this Framework to a standard OS X location,
|
|
such as:
|
|
ln -s "#{frameworks}/Nu.framework" /Library/Frameworks
|
|
EOS
|
|
end
|
|
return nil
|
|
end
|
|
|
|
test do
|
|
system bin/"nush", "-e", '(puts "Everything old is Nu again.")'
|
|
end
|
|
end
|