new formula: skim app (pdf viewer and note taker)

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Jonathan Groß 2010-08-02 11:44:31 +02:00 committed by Adam Vandenberg
parent 7ef2b844d7
commit fa0e93e8c8

20
Formula/skim.rb Normal file
View file

@ -0,0 +1,20 @@
require 'formula'
class Skim <Formula
head 'http://skim-app.svn.sourceforge.net/svnroot/skim-app/trunk'
homepage 'http://skim-app.sourceforge.net/'
def install
system "xcodebuild"
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