From f2bc45f8756b52d7771d6e1830eef4a78a79f279 Mon Sep 17 00:00:00 2001 From: Tony Cebzanov Date: Fri, 13 Sep 2013 10:08:18 -0400 Subject: wimlib 1.5.0 Closes #22516. Signed-off-by: Adam Vandenberg --- Library/Formula/wimlib.rb | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Library/Formula/wimlib.rb (limited to 'Library/Formula') diff --git a/Library/Formula/wimlib.rb b/Library/Formula/wimlib.rb new file mode 100644 index 000000000..e603a9557 --- /dev/null +++ b/Library/Formula/wimlib.rb @@ -0,0 +1,23 @@ +require 'formula' + +class Wimlib < Formula + homepage 'http://sourceforge.net/projects/wimlib/' + url 'http://downloads.sourceforge.net/project/wimlib/wimlib-1.5.0.tar.gz' + sha1 '3a86bd84a27d1db0c33dc15d277dd5b94968379a' + + 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 "wiminfo", "--help" + end +end -- cgit v1.2.3