aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorKenneth Vestergaard Schmidt2010-06-16 17:12:55 +0200
committerAdam Vandenberg2010-06-17 10:29:31 -0700
commit694b6f7dc3355df0f06148374e6ffe202158ed64 (patch)
tree29a3e4cb9e3aa47b09870de0a51752a95416809c /Library
parentf016a10cd3ad04f8bb5f6dbae8138d650c253915 (diff)
downloadhomebrew-694b6f7dc3355df0f06148374e6ffe202158ed64.tar.bz2
new formula for mdf2iso
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mdf2iso.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/mdf2iso.rb b/Library/Formula/mdf2iso.rb
new file mode 100644
index 000000000..c8f41fa0e
--- /dev/null
+++ b/Library/Formula/mdf2iso.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Mdf2iso <Formula
+ url 'http://download.berlios.de/mdf2iso/mdf2iso-0.3.0-src.tar.bz2'
+ homepage 'http://mdf2iso.berlios.de/'
+ md5 'a190625318476a196930ac66acd8fd07'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end