2010-10-07 03:33:29 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Rnv < Formula
|
2010-10-07 03:33:29 +00:00
|
|
|
homepage 'http://freshmeat.net/projects/rnv'
|
2013-04-24 04:14:03 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/rnv/Sources/1.7.11/rnv-1.7.11.tar.bz2'
|
|
|
|
sha1 '1a4475cbb6ff6da9e98cd8cceae7356e9a9f72b4'
|
2010-10-07 03:33:29 +00:00
|
|
|
|
|
|
|
depends_on 'expat'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|