51 lines
1.7 KiB
Ruby
51 lines
1.7 KiB
Ruby
class Minizip2 < Formula
|
|
desc "Zip file manipulation library with minizip 1.x compatibility layer"
|
|
homepage "https://github.com/nmoinvaz/minizip"
|
|
url "https://github.com/nmoinvaz/minizip/archive/2.10.0.tar.gz"
|
|
sha256 "4c7f236268fef57ce5dcbd9645235a22890d62480a592e1b0515ecff93f9989b"
|
|
license "Zlib"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "1e27e8b43a651ef11893cb6ce591c05b1d0bc86c092c633faa43140657a63ee3" => :catalina
|
|
sha256 "a878c57c455068783abeec0704ad27da5cffd5b28eae9a2f0f57b2077650e187" => :mojave
|
|
sha256 "e76bd49d513bfe9939d35c41451ff76807f9230b31b8761e34a26877414d2519" => :high_sierra
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "zstd"
|
|
|
|
uses_from_macos "bzip2"
|
|
uses_from_macos "libiconv"
|
|
uses_from_macos "zlib"
|
|
|
|
conflicts_with "minizip",
|
|
because: "both install a `libminizip.a` library"
|
|
conflicts_with "libtcod", "libzip",
|
|
because: "libtcod, libzip and minizip2 install a `zip.h` header"
|
|
|
|
def install
|
|
system "cmake", ".", *std_cmake_args, "-DIconv_IS_BUILT_IN=on"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include "mz_zip.h"
|
|
#include "mz_compat.h"
|
|
int main(void)
|
|
{
|
|
zipFile hZip = zipOpen2_64("test.zip", APPEND_STATUS_CREATE, NULL, NULL);
|
|
return hZip != NULL && mz_zip_close(NULL) == MZ_PARAM_ERROR ? 0 : 1;
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.c", "-I#{include}", "-L#{lib}",
|
|
"-lminizip", "-lz", "-lbz2", "-liconv",
|
|
"-L#{Formula["zstd"].opt_lib}", "-lzstd",
|
|
"-framework", "CoreFoundation", "-framework", "Security", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|