msitools 0.93

Closes Homebrew/homebrew#22627.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Tony Cebzanov 2013-09-17 13:57:36 -04:00 committed by Adam Vandenberg
parent 37b0a4075a
commit b1498d7bc4
1 changed files with 32 additions and 0 deletions

32
Formula/msitools.rb Normal file
View File

@ -0,0 +1,32 @@
require 'formula'
class Msitools < Formula
homepage 'https://wiki.gnome.org/msitools'
url 'http://ftp.gnome.org/pub/GNOME/sources/msitools/0.93/msitools-0.93.tar.xz'
sha1 'b8dcf394a1aeddd8404ae1702ce42af623f54101'
depends_on 'xz' => :build
depends_on 'intltool' => :build
depends_on 'pkg-config' => :build
depends_on :automake
depends_on :autoconf
depends_on :libtool
depends_on 'e2fsprogs'
depends_on 'gcab'
depends_on 'gettext'
depends_on 'glib'
depends_on 'libgsf'
depends_on 'vala'
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "msiinfo", "--help"
end
end