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

class Tivodecode < Formula
  url 'http://downloads.sourceforge.net/project/tivodecode/tivodecode/0.2pre4/tivodecode-0.2pre4.tar.gz'
  homepage 'http://tivodecode.sourceforge.net/'
  sha1 'efabe4aee461e6da90ddc52abe9ae025c4185032'
  version '0.2pre4'

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