blob: 07491cd90ae8751847681162201ab1a3189a86f4 (
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.1.tar.gz'
homepage 'http://mediatomb.cc'
md5 'e927dd5dc52d3cfcebd8ca1af6f0d3c2'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|