aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/orc.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/Library/Formula/orc.rb b/Library/Formula/orc.rb
new file mode 100644
index 000000000..bd9045e0f
--- /dev/null
+++ b/Library/Formula/orc.rb
@@ -0,0 +1,11 @@
+require 'brewkit'
+
+class Orc <Formula
+ head 'git://code.entropywave.com/git/orc.git'
+ homepage 'http://code.entropywave.com/projects/orc/'
+
+ def install
+ system "./autogen.sh", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--disable-gtk-doc"
+ system "make install"
+ end
+end