aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-27 14:09:01 -0800
committerAdam Vandenberg2013-01-28 21:39:46 -0800
commit6c82269534d6ff0b1c8b56a2caeb3bad2ed447ff (patch)
tree36bc2be360730d9dcab2427aa119bbc9ffb2423c /Library/Formula
parent7641ae8171ecbe8a9e1c994a4434612654155b5c (diff)
downloadhomebrew-6c82269534d6ff0b1c8b56a2caeb3bad2ed447ff.tar.bz2
detox: style nits
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/detox.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/detox.rb b/Library/Formula/detox.rb
index 6c17ea184..d7d91e193 100644
--- a/Library/Formula/detox.rb
+++ b/Library/Formula/detox.rb
@@ -1,15 +1,15 @@
require 'formula'
class Detox < Formula
- url 'http://downloads.sourceforge.net/project/detox/detox/1.2.0/detox-1.2.0.tar.bz2'
homepage 'http://detox.sourceforge.net/'
+ url 'http://downloads.sourceforge.net/project/detox/detox/1.2.0/detox-1.2.0.tar.bz2'
sha1 'cfb88a1adefaf4ee3933baf9a6530c102baa47ce'
def install
system "./configure", "--mandir=#{man}", "--prefix=#{prefix}"
system "make"
- (prefix + "etc").mkpath
- (share + "detox").mkpath
+ (prefix/"etc").mkpath
+ (share/"detox").mkpath
system "make install"
end
end