aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/orc.rb
blob: a0fecb36f4d1b18b763fe27c408b2c1c2b8d9c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'formula'

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