aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/rnv.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/rnv.rb b/Library/Formula/rnv.rb
new file mode 100644
index 000000000..a6ae1e0e8
--- /dev/null
+++ b/Library/Formula/rnv.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Rnv <Formula
+ url 'http://downloads.sourceforge.net/project/rnv/Sources/1.7.10/rnv-1.7.10.tar.bz2'
+ homepage 'http://freshmeat.net/projects/rnv'
+ md5 '45610213e73b3e2a83ba80710e3a992c'
+
+ depends_on 'expat'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end