blob: e192a20261c98a39ee32121414c7ba1798373411 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
require 'formula'
class Schroedinger < Formula
homepage 'http://diracvideo.org/'
url 'http://diracvideo.org/download/schroedinger/schroedinger-1.0.11.tar.gz'
md5 'da6af08e564ca1157348fb8d92efc891'
head 'git://diracvideo.org/git/schroedinger.git'
depends_on 'pkg-config' => :build
depends_on 'orc'
if ARGV.build_head? and MacOS.xcode_version >= "4.3"
depends_on "automake" => :build
depends_on "libtool" => :build
end
def install
system "autoreconf -i -f" if ARGV.build_head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
# Disable compiling the test suite.
# The test suite is known not to build against Orc 0.4.16 in Schroedinger 1.0.11.
# A fix is in upstream, so test when pulling 1.0.12 if this is still needed. See:
# http://www.mail-archive.com/schrodinger-devel@lists.sourceforge.net/msg00415.html
inreplace "Makefile" do |s|
s.change_make_var! "SUBDIRS", "schroedinger doc tools"
s.change_make_var! "DIST_SUBDIRS", "schroedinger doc tools"
end
system "make install"
end
end
|