2010-08-02 09:44:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Skim < Formula
|
2010-08-02 09:44:31 +00:00
|
|
|
head 'http://skim-app.svn.sourceforge.net/svnroot/skim-app/trunk'
|
|
|
|
homepage 'http://skim-app.sourceforge.net/'
|
|
|
|
|
|
|
|
def install
|
2011-03-03 20:29:10 +00:00
|
|
|
system "xcodebuild SYMROOT=build"
|
2010-08-02 09:44:31 +00:00
|
|
|
prefix.install "build/Release/Skim.app"
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS
|
|
|
|
Skim.app was installed in:
|
|
|
|
#{prefix}
|
|
|
|
|
|
|
|
To symlink into ~/Applications, you can do:
|
|
|
|
brew linkapps
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|