diff options
| author | Jonathan Groß | 2010-08-02 11:44:31 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2010-08-07 22:36:30 -0700 |
| commit | 8bb327e326d17c37cb3b4457cbc8afba039c0d2d (patch) | |
| tree | 7b268c9e2a35c6ca3ab526099734be92e87aa056 /Library/Formula | |
| parent | df65d5bc45c1961166608a457cfe4df19f59c8ec (diff) | |
| download | homebrew-8bb327e326d17c37cb3b4457cbc8afba039c0d2d.tar.bz2 | |
new formula: skim app (pdf viewer and note taker)
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/skim.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/skim.rb b/Library/Formula/skim.rb new file mode 100644 index 000000000..5b00f1c67 --- /dev/null +++ b/Library/Formula/skim.rb @@ -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 |
