9f26b4bf69
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 Homebrew/homebrew#14952. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
389 B
Ruby
13 lines
389 B
Ruby
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
|