aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
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