Add formula for pos

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Fabian Jakobs 2010-01-18 09:08:44 +01:00 committed by Adam Vandenberg
parent fd250c941a
commit 8de6551cd9
1 changed files with 20 additions and 0 deletions

20
Formula/pos.rb Normal file
View File

@ -0,0 +1,20 @@
require 'formula'
class Pos <Formula
url 'http://www.finkproject.org/bindist/dists/fink-0.9.0/main/source/utils/pos-1.2.tgz'
md5 'c667fb4ca38c96494f888ade9fb4e40a'
homepage "http://sage.ucsc.edu/~wgscott/xtal/wiki/index.php/Unix_and_OS_X:_The_Absolute_Essentials"
def cdf_script
<<-END
#!/bin/bash
cd "$(posd)"
END
end
def install
bin.install %w[bin/fdc bin/posd]
(bin+'cdf').write cdf_script
share.install %w[Finder_Toolbar_Applications.dmg.gz iTerm.webloc]
end
end