Sort and line up path helpers

This commit is contained in:
Adam Vandenberg 2010-07-04 21:07:37 -07:00
parent 4873062523
commit 1f55ba270d

View File

@ -113,16 +113,16 @@ class Formula
HOMEBREW_CELLAR+@name+@version HOMEBREW_CELLAR+@name+@version
end end
def bin; prefix+'bin' end def bin; prefix+'bin' end
def sbin; prefix+'sbin' end def doc; prefix+'share/doc'+name end
def doc; prefix+'share/doc'+name end def include; prefix+'include' end
def lib; prefix+'lib' end def info; prefix+'share/info' end
def libexec; prefix+'libexec' end def lib; prefix+'lib' end
def man; prefix+'share/man' end def libexec; prefix+'libexec' end
def man1; man+'man1' end def man; prefix+'share/man' end
def info; prefix+'share/info' end def man1; man+'man1' end
def include; prefix+'include' end def sbin; prefix+'sbin' end
def share; prefix+'share' end def share; prefix+'share' end
# configuration needs to be preserved past upgrades # configuration needs to be preserved past upgrades
def etc; HOMEBREW_PREFIX+'etc' end def etc; HOMEBREW_PREFIX+'etc' end