aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2010-03-09 18:00:43 +0100
committerDavid Höppner2010-03-09 18:09:52 +0100
commit525692d74d9bf2b010fe4718140b090f8b5c97f9 (patch)
treeab4e8a95355b50420ac065a6a842efc66dc2b4fb /Library/Formula
parente9558929e4d09774ac44b223f1d4f9e7f893da03 (diff)
downloadhomebrew-525692d74d9bf2b010fe4718140b090f8b5c97f9.tar.bz2
New formula schroedinger
Implementation of Dirac
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/schroedinger.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/schroedinger.rb b/Library/Formula/schroedinger.rb
new file mode 100644
index 000000000..809575bc6
--- /dev/null
+++ b/Library/Formula/schroedinger.rb
@@ -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