homebrew-core/Formula/appledoc.rb

40 lines
1.1 KiB
Ruby
Raw Normal View History

require 'formula'
class LionOrNewer < Requirement
2013-01-19 01:30:43 +00:00
fatal true
2013-01-20 02:45:59 +00:00
satisfy MacOS.version >= :lion
def message
"Appledoc requires Mac OS X 10.7 (Lion) or newer."
end
end
class Appledoc < Formula
2012-09-01 19:42:00 +00:00
homepage 'http://appledoc.gentlebytes.com/'
url "https://github.com/tomaz/appledoc/tarball/v2.1"
sha1 'd3bd05ce3f7b755cd0dfcb15316bc9f667c1ff2f'
2012-09-01 19:42:00 +00:00
head 'https://github.com/tomaz/appledoc.git', :branch => 'master'
depends_on :xcode # For working xcodebuild.
depends_on LionOrNewer.new
def install
system "xcodebuild", "-project", "appledoc.xcodeproj",
"-target", "appledoc",
"-configuration", "Release",
"clean", "install",
"SYMROOT=build",
"DSTROOT=build",
"INSTALL_PATH=/bin",
"OTHER_CFLAGS='-DCOMPILE_TIME_DEFAULT_TEMPLATE_PATH=@\"#{prefix}/Templates\"'"
bin.install "build/bin/appledoc"
prefix.install "Templates/"
end
def test
system "#{bin}/appledoc", "--version"
end
end