blob: 3e9510a251f54fc235fb357a6de4c0a0ed27c4cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 SYMROOT=build"
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
|