aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/wimlib.rb
blob: 3a6b8b54a4105f7eb6a529881239d72ef608d4d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'formula'

class Wimlib < Formula
  homepage 'http://sourceforge.net/projects/wimlib/'
  url 'https://downloads.sourceforge.net/project/wimlib/wimlib-1.5.3.tar.gz'
  sha1 '07cfd75ad452cb29f0061196db3bb38230ece3de'

  depends_on 'pkg-config' => :build
  depends_on 'ntfs-3g'

  def install
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--disable-silent-rules",
                          "--without-fuse", # requires librt, unavailable on OSX
                          "--prefix=#{prefix}"
    system "make", "install"
  end

  test do
    system bin/"wiminfo", "--help"
  end
end