blob: d388034f4d0a2e3c5a3f7b41adc0f578c00211f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Orc < Formula
homepage 'http://code.entropywave.com/projects/orc/'
url 'http://code.entropywave.com/download/orc/orc-0.4.18.tar.gz'
sha1 '0119bec2291c878a7953cb041dd080856c986ccf'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-gtk-doc"
system "make install"
end
end
|