53473b6bf5
The MacOS.version? family of methods (other than "leopard?") are poorly defined and lead to confusing code. Replace them in formulae with more explicit comparisons. "MacOS.version" is a special version object that can be compared to numerics, symbols, and strings using the standard Ruby comparison methods. The old methods were moved to compat when the version comparison code was merged, and they must remain there "forever", but they should not be used in new code. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
69 lines
1.7 KiB
Ruby
69 lines
1.7 KiB
Ruby
require 'formula'
|
|
|
|
class NeedsLion < Requirement
|
|
def satisfied?
|
|
MacOS.version >= :lion
|
|
end
|
|
def message
|
|
"Nu requires Mac OS X 10.7 or newer"
|
|
end
|
|
def fatal?
|
|
true
|
|
end
|
|
end
|
|
|
|
class Nu < Formula
|
|
homepage 'http://programming.nu'
|
|
url 'http://programming.nu/releases/Nu-2.0.1.tgz'
|
|
sha1 'c0735f8f3daec9471b849f8e96827b5eef0ec44e'
|
|
|
|
depends_on NeedsLion.new
|
|
depends_on 'pcre'
|
|
|
|
def install
|
|
|
|
ENV['PREFIX'] = prefix
|
|
|
|
inreplace "Makefile" do |s|
|
|
cflags = s.get_make_var "CFLAGS"
|
|
s.change_make_var! "CFLAGS", "#{cflags} #{ENV["CPPFLAGS"]}"
|
|
end
|
|
|
|
inreplace "Nukefile" do |s|
|
|
case Hardware.cpu_type
|
|
when :intel
|
|
arch = :i386
|
|
when :ppc
|
|
arch = :ppc
|
|
end
|
|
arch = :x86_64 if arch == :i386 && Hardware.is_64_bit?
|
|
s.sub!(/^;;\(set @arch '\("i386"\)\)$/, "(set @arch '(\"#{arch}\"))") unless arch.nil?
|
|
s.gsub!('(SH "sudo ', '(SH "') # don't use sudo to install
|
|
s.gsub!('#{@destdir}/Library/Frameworks', '#{@prefix}/Library/Frameworks')
|
|
s.sub! /^;; source files$/, <<-EOS
|
|
;; source files
|
|
(set @framework_install_path "#{prefix}/Library/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.exists? prefix+"Library/Frameworks/Nu.framework"
|
|
return <<-EOS.undent
|
|
Nu.framework was installed to:
|
|
#{prefix}/Library/Frameworks/Nu.framework
|
|
|
|
You may want to symlink this Framework to a standard OS X location,
|
|
such as:
|
|
ln -s "#{prefix}/Library/Frameworks/Nu.framework" /Library/Frameworks
|
|
EOS
|
|
end
|
|
return nil
|
|
end
|
|
end
|