aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJonathan Groß2010-08-02 11:44:31 +0200
committerAdam Vandenberg2010-08-07 22:36:30 -0700
commit8bb327e326d17c37cb3b4457cbc8afba039c0d2d (patch)
tree7b268c9e2a35c6ca3ab526099734be92e87aa056 /Library
parentdf65d5bc45c1961166608a457cfe4df19f59c8ec (diff)
downloadhomebrew-8bb327e326d17c37cb3b4457cbc8afba039c0d2d.tar.bz2
new formula: skim app (pdf viewer and note taker)
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/skim.rb20
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