aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMark A. Matienzo2011-08-11 15:37:31 -0400
committerAdam Vandenberg2011-09-01 09:47:49 -0700
commitb2a1e8a9170dfe1696c6fa6618605e2b2217d4d6 (patch)
tree7d313bc1bed9ddae59fb136e272e02faeb8f353e /Library/Formula
parentb90f374da3d032f3dd46f1ac600cb68ecb7df487 (diff)
downloadhomebrew-b2a1e8a9170dfe1696c6fa6618605e2b2217d4d6.tar.bz2
aimage 3.2.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/aimage.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/aimage.rb b/Library/Formula/aimage.rb
new file mode 100644
index 000000000..e398eb46d
--- /dev/null
+++ b/Library/Formula/aimage.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Aimage < Formula
+ url 'http://afflib.org/downloads/aimage-3.2.5.tar.gz'
+ homepage 'http://afflib.org/software/aimage-the-advanced-disk-imager'
+ md5 '07a11d653cdd1d7a5aefe4d99cdbd408'
+
+ depends_on 'afflib'
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end