aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/dwarf.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/dwarf.rb b/Library/Formula/dwarf.rb
new file mode 100644
index 000000000..38eb75cef
--- /dev/null
+++ b/Library/Formula/dwarf.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Dwarf <Formula
+ url 'http://dwarf-ng.googlecode.com/files/dwarf-0.2.tar.gz'
+ head 'http://code.autistici.org/svn/dwarf/trunk'
+ homepage 'http://code.autistici.org/trac/dwarf'
+ md5 '70dce54fe268af3368b9340e3ad73142'
+
+ depends_on 'readline'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end