From 1f55ba270da6b88010d61ff90e875282dc61cecf Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Sun, 4 Jul 2010 21:07:37 -0700 Subject: Sort and line up path helpers --- Library/Homebrew/formula.rb | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'Library') diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index ed958078f..75bddcf15 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -113,16 +113,16 @@ class Formula HOMEBREW_CELLAR+@name+@version end - def bin; prefix+'bin' end - def sbin; prefix+'sbin' end - def doc; prefix+'share/doc'+name end - def lib; prefix+'lib' end - def libexec; prefix+'libexec' end - def man; prefix+'share/man' end - def man1; man+'man1' end - def info; prefix+'share/info' end - def include; prefix+'include' end - def share; prefix+'share' end + def bin; prefix+'bin' end + def doc; prefix+'share/doc'+name end + def include; prefix+'include' end + def info; prefix+'share/info' end + def lib; prefix+'lib' end + def libexec; prefix+'libexec' end + def man; prefix+'share/man' end + def man1; man+'man1' end + def sbin; prefix+'sbin' end + def share; prefix+'share' end # configuration needs to be preserved past upgrades def etc; HOMEBREW_PREFIX+'etc' end -- cgit v1.2.3