aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authornibbles 2bits2012-09-14 18:17:16 -0700
committerAdam Vandenberg2012-09-15 12:58:54 -0700
commitdeda2732b5607e9f88d5ef23a59b3c9e5caceac3 (patch)
tree00fa1d6a38aecb298ea167bdaa2f8c0eb8c7a128 /Library/Formula
parentff603f1ca8666adde7ac1c6bf4ed85f2128c83c8 (diff)
downloadhomebrew-deda2732b5607e9f88d5ef23a59b3c9e5caceac3.tar.bz2
iat 0.1.7
On the mdf2iso website they say that their software is deprecated and to use iat. Iso9660 Analyzer Tool is a free utility tool for detecting the structure of DVD/CD-ROM image file formats; the tool supports many DVD/CD-ROM data image file formats. - Works well with superenv. - Use a named subdirectory for the include files because this software uses common names like `debug.h` Closes #14952. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/iat.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/iat.rb b/Library/Formula/iat.rb
new file mode 100644
index 000000000..b6795182f
--- /dev/null
+++ b/Library/Formula/iat.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Iat < Formula
+ homepage 'http://iat.berlios.de/'
+ url 'http://sourceforge.net/projects/iat.berlios/files/iat-0.1.7.tar.bz2'
+ sha1 '006ad57c18c399530ea07847aa0f1c34b650d439'
+
+ def install
+ system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}",
+ "--includedir=#{include}/iat"
+ system 'make install'
+ end
+end