homebrew-core/Formula/detox.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

15 lines
410 B
Ruby

require 'formula'
class Detox < Formula
homepage 'http://detox.sourceforge.net/'
url 'https://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
system "make install"
end
end