diff options
| author | nibbles 2bits | 2012-09-14 18:17:16 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-09-15 12:58:54 -0700 |
| commit | deda2732b5607e9f88d5ef23a59b3c9e5caceac3 (patch) | |
| tree | 00fa1d6a38aecb298ea167bdaa2f8c0eb8c7a128 /Library/Formula | |
| parent | ff603f1ca8666adde7ac1c6bf4ed85f2128c83c8 (diff) | |
| download | homebrew-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.rb | 13 |
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 |
