aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-27 21:36:28 -0800
committerAdam Vandenberg2013-01-28 21:40:17 -0800
commit27462674929d16420e7b78418310bdcc04186f82 (patch)
tree1aa98725a6cee8e23ca1597026b6415b5adc2608 /Library/Formula
parentfd02160f4443ae01a88743f3a3bb64cdf62ee6a9 (diff)
downloadhomebrew-27462674929d16420e7b78418310bdcc04186f82.tar.bz2
pos: style nits
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pos.rb19
1 files changed, 9 insertions, 10 deletions
diff --git a/Library/Formula/pos.rb b/Library/Formula/pos.rb
index 0c6e839a8..ee2875a29 100644
--- a/Library/Formula/pos.rb
+++ b/Library/Formula/pos.rb
@@ -1,23 +1,22 @@
require 'formula'
class Pos < Formula
+ homepage "http://sage.ucsc.edu/~wgscott/xtal/wiki/index.php/Unix_and_OS_X:_The_Absolute_Essentials"
url 'http://www.finkproject.org/bindist/dists/fink-0.9.0/main/source/utils/pos-1.2.tgz'
sha1 '320dc42b80508338f2f5f4e330d0c39462e3bba8'
- homepage "http://sage.ucsc.edu/~wgscott/xtal/wiki/index.php/Unix_and_OS_X:_The_Absolute_Essentials"
def install
bin.install %w[bin/fdc bin/posd]
share.install %w[Finder_Toolbar_Applications.dmg.gz iTerm.webloc]
end
- def caveats
- <<-EOS.undent
- cdf (change terminal window to current finder window)
- needs to be installed as an alias in your shell init.
- For example, add the following to your .bash_profile:
- if [ -f `brew --prefix`/bin/posd ]; then
- alias cdf='cd "`posd`"'
- fi
- EOS
+ def caveats; <<-EOS.undent
+ cdf (change terminal window to current finder window)
+ needs to be installed as an alias in your shell init.
+ For example, add the following to your .bash_profile:
+ if [ -f `brew --prefix`/bin/posd ]; then
+ alias cdf='cd "`posd`"'
+ fi
+ EOS
end
end