fa0e93e8c8
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
20 lines
408 B
Ruby
20 lines
408 B
Ruby
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
|