blob: 5f7f4c6275622a2b391015ad3e7ace8ff30babfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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/'
  md5 'da34c6bc3c68ce2fb008e25066e72927'
  def install
    system "./configure", "--mandir=#{man}", "--prefix=#{prefix}"
    system "make"
    (prefix + "etc").mkpath
    (share + "detox").mkpath
    system "make install"
  end
end
  |