aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mediatomb.rb
blob: c33c687fe4724775033ad51b6fca0457b0ef01e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Mediatomb <Formula
  url 'http://downloads.sourceforge.net/mediatomb/mediatomb-0.12.0.tar.gz'
  homepage 'http://mediatomb.cc'
  md5 'd822a3f33ee109f799d7a6b76d394e05'

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end