aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/schroedinger.rb
blob: a3076a5c5f0a114ec8298f6d15e58b005738beb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Schroedinger <Formula
  head	'git://diracvideo.org/git/schroedinger.git'
  url	'http://diracvideo.org/download/schroedinger/schroedinger-1.0.9.tar.gz'
  md5	'd67ec48b7c506db8c8b49156bf409e60'
  homepage 'http://diracvideo.org/'

  depends_on 'pkg-config' => :build
  depends_on 'orc'

  def install
    system "autoreconf -i -f" if ARGV.build_head?
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end