88779ade49
Closes Homebrew/homebrew#14653.
15 lines
413 B
Ruby
15 lines
413 B
Ruby
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/'
|
|
sha1 'cfb88a1adefaf4ee3933baf9a6530c102baa47ce'
|
|
|
|
def install
|
|
system "./configure", "--mandir=#{man}", "--prefix=#{prefix}"
|
|
system "make"
|
|
(prefix + "etc").mkpath
|
|
(share + "detox").mkpath
|
|
system "make install"
|
|
end
|
|
end
|