467a643264
Implementation of Dirac
17 lines
505 B
Ruby
17 lines
505 B
Ruby
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'
|
|
depends_on 'orc'
|
|
|
|
def install
|
|
system "autoreconf -i -f" if ARGV.include? '--HEAD'
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|