aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dwarf.rb
diff options
context:
space:
mode:
authoratr0002010-09-04 04:46:27 -0400
committerDavid Höppner2010-09-04 11:24:12 +0200
commita1693ca97f1e5c0e590aa28543d63b5d65cfec9d (patch)
treef6ab091ddd2dad6d008afbaa8bfbbdcf6d9d0a6f /Library/Formula/dwarf.rb
parent3e6c1ac07d741c59674be6264c2010a6efdbe23d (diff)
downloadhomebrew-a1693ca97f1e5c0e590aa28543d63b5d65cfec9d.tar.bz2
New formula dwarf
a lillte and powerful object file manipulation tool.
Diffstat (limited to 'Library/Formula/dwarf.rb')
-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