2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-06 07:59:40 +00:00
|
|
|
|
|
|
|
class Orc <Formula
|
|
|
|
homepage 'http://code.entropywave.com/projects/orc/'
|
2010-06-10 18:22:45 +00:00
|
|
|
url 'http://code.entropywave.com/download/orc/orc-0.4.5.tar.gz'
|
|
|
|
md5 'e26e59428b13ec251916f34bea96eee5'
|
2009-10-06 07:59:40 +00:00
|
|
|
|
|
|
|
def install
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-gtk-doc"
|
2009-10-06 07:59:40 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|