Adding formula for tivodecode

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
David Sanson 2010-08-04 19:02:01 -04:00 committed by Adam Vandenberg
parent 255263204e
commit 8fdc6ab2c8

13
Formula/tivodecode.rb Normal file
View file

@ -0,0 +1,13 @@
require 'formula'
class Tivodecode <Formula
url 'http://sourceforge.net/projects/tivodecode/files/tivodecode/0.2pre4/tivodecode-0.2pre4.tar.gz/download'
homepage 'http://tivodecode.sourceforge.net/'
md5 'cf82385db3e0d708ebdbe5055b8ae7ee'
version '0.2pre4'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end