90 lines
3.4 KiB
Ruby
90 lines
3.4 KiB
Ruby
class Msitools < Formula
|
|
desc "Windows installer (.MSI) tool"
|
|
homepage "https://wiki.gnome.org/msitools"
|
|
url "https://download.gnome.org/sources/msitools/0.98/msitools-0.98.tar.xz"
|
|
sha256 "4c7198c82a6b2116515fb6f7b6e4c3cae9aeec0f6e6090e532ec4e6e871d8ba7"
|
|
revision 1
|
|
|
|
bottle do
|
|
sha256 "83ff14b0667f18cf65484bd24d9cd6892e527a566765c9b7e90a6763125fd40c" => :mojave
|
|
sha256 "19f154c91278ec5f663dc8648a6732cd363835ca80d9fa571c02324b5a3eec5c" => :high_sierra
|
|
sha256 "3faecd1b566a9e685602597c614a00467edfd6b30dbeb6640c1be7dabfdf248d" => :sierra
|
|
end
|
|
|
|
depends_on "intltool" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "e2fsprogs"
|
|
depends_on "gcab"
|
|
depends_on "gettext"
|
|
depends_on "glib"
|
|
depends_on "libgsf"
|
|
depends_on "vala"
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
# wixl-heat: make an xml fragment
|
|
assert_match /<Fragment>/, pipe_output("#{bin}/wixl-heat --prefix test")
|
|
|
|
# wixl: build two installers
|
|
1.upto(2) do |i|
|
|
(testpath/"test#{i}.txt").write "abc"
|
|
(testpath/"installer#{i}.wxs").write <<~EOS
|
|
<?xml version="1.0"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<Product Id="*" UpgradeCode="DADAA9FC-54F7-4977-9EA1-8BDF6DC73C7#{i}"
|
|
Name="Test" Version="1.0.0" Manufacturer="BigCo" Language="1033">
|
|
<Package InstallerVersion="200" Compressed="yes" Comments="Windows Installer Package"/>
|
|
<Media Id="1" Cabinet="product.cab" EmbedCab="yes"/>
|
|
|
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
|
<Directory Id="ProgramFilesFolder">
|
|
<Directory Id="INSTALLDIR" Name="test">
|
|
<Component Id="ApplicationFiles" Guid="52028951-5A2A-4FB6-B8B2-73EF49B320F#{i}">
|
|
<File Id="ApplicationFile1" Source="test#{i}.txt"/>
|
|
</Component>
|
|
</Directory>
|
|
</Directory>
|
|
</Directory>
|
|
|
|
<Feature Id="DefaultFeature" Level="1">
|
|
<ComponentRef Id="ApplicationFiles"/>
|
|
</Feature>
|
|
</Product>
|
|
</Wix>
|
|
EOS
|
|
system "#{bin}/wixl", "-o", "installer#{i}.msi", "installer#{i}.wxs"
|
|
assert_predicate testpath/"installer#{i}.msi", :exist?
|
|
end
|
|
|
|
# msidiff: diff two installers
|
|
lines = `#{bin}/msidiff --list installer1.msi installer2.msi 2>/dev/null`.split("\n")
|
|
assert_equal 0, $CHILD_STATUS.exitstatus
|
|
assert_equal "-Program Files/test/test1.txt", lines[-2]
|
|
assert_equal "+Program Files/test/test2.txt", lines[-1]
|
|
|
|
# msiinfo: show info for an installer
|
|
out = `#{bin}/msiinfo suminfo installer1.msi`
|
|
assert_equal 0, $CHILD_STATUS.exitstatus
|
|
assert_match /Author: BigCo/, out
|
|
|
|
# msiextract: extract files from an installer
|
|
mkdir "files"
|
|
system "#{bin}/msiextract", "--directory", "files", "installer1.msi"
|
|
assert_equal (testpath/"test1.txt").read,
|
|
(testpath/"files/Program Files/test/test1.txt").read
|
|
|
|
# msidump: dump tables from an installer
|
|
mkdir "idt"
|
|
system "#{bin}/msidump", "--directory", "idt", "installer1.msi"
|
|
assert_predicate testpath/"idt/File.idt", :exist?
|
|
|
|
# msibuild: replace a table in an installer
|
|
system "#{bin}/msibuild", "installer1.msi", "-i", "idt/File.idt"
|
|
end
|
|
end
|