2011-03-10 05:11:03 +00:00
|
|
|
class Detox < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Utility to replace problematic characters in filenames"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "http://detox.sourceforge.net/"
|
|
|
|
url "https://downloads.sourceforge.net/project/detox/detox/1.2.0/detox-1.2.0.tar.bz2"
|
|
|
|
sha256 "abfad90ee7d3e0fc53ce3b9da3253f9a800cdd92e3f8cc12a19394a7b1dcdbf8"
|
2010-11-26 22:20:18 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--mandir=#{man}", "--prefix=#{prefix}"
|
|
|
|
system "make"
|
2013-01-27 22:09:01 +00:00
|
|
|
(prefix/"etc").mkpath
|
|
|
|
(share/"detox").mkpath
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make", "install"
|
2010-11-26 22:20:18 +00:00
|
|
|
end
|
2011-03-10 05:11:03 +00:00
|
|
|
end
|