New formula schroedinger

Implementation of Dirac
master
David Höppner 2010-03-09 18:00:43 +01:00
parent f185c00ddc
commit 467a643264
1 changed files with 17 additions and 0 deletions

17
Formula/schroedinger.rb Normal file
View File

@ -0,0 +1,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'
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