From 9eafd051adae88bacf8952e5e06a2d6925d38a03 Mon Sep 17 00:00:00 2001 From: Samantha <19739806+UltimateNova1203@users.noreply.github.com> Date: Sun, 30 Jun 2024 16:06:12 -0400 Subject: [PATCH 1/4] Create maxcso.rb --- Formula/m/maxcso.rb | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Formula/m/maxcso.rb diff --git a/Formula/m/maxcso.rb b/Formula/m/maxcso.rb new file mode 100644 index 00000000..217ecdf3 --- /dev/null +++ b/Formula/m/maxcso.rb @@ -0,0 +1,24 @@ +class maxcso < Formula + include Language::Python::Virtualenv + + desc "Fast cso compressor" + homepage "https://github.com/unknownbrackets/maxcso" + url "https://github.com/unknownbrackets/maxcso/archive/refs/tags/v1.13.0.zip" + sha256 "09df940ddd48a299aa9a1aed85c495aea1be8b9185cab5b893f6cd6bdb3fc822" + license "ISC License" + + depends_on "lz4" + depends_on "libuv" + depends_on "libdeflate" + depends_on "pkg-config" + + def install + system "make" + bin.install "maxcso" + end + + test do + system "#{bin}/maxcso", "--help" + end + +end From cfdbf335ba32865da055e47568caa4f5db79688a Mon Sep 17 00:00:00 2001 From: Samantha <19739806+UltimateNova1203@users.noreply.github.com> Date: Sun, 30 Jun 2024 16:07:30 -0400 Subject: [PATCH 2/4] Update maxcso.rb --- Formula/m/maxcso.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/m/maxcso.rb b/Formula/m/maxcso.rb index 217ecdf3..beee1025 100644 --- a/Formula/m/maxcso.rb +++ b/Formula/m/maxcso.rb @@ -1,4 +1,4 @@ -class maxcso < Formula +class MaxCSO < Formula include Language::Python::Virtualenv desc "Fast cso compressor" From b894554e8600ab153541d3f6b8ec91b75f0aeb93 Mon Sep 17 00:00:00 2001 From: Samantha <19739806+UltimateNova1203@users.noreply.github.com> Date: Sun, 30 Jun 2024 16:07:52 -0400 Subject: [PATCH 3/4] Update maxcso.rb --- Formula/m/maxcso.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/m/maxcso.rb b/Formula/m/maxcso.rb index beee1025..8336629f 100644 --- a/Formula/m/maxcso.rb +++ b/Formula/m/maxcso.rb @@ -1,4 +1,4 @@ -class MaxCSO < Formula +class Maxcso < Formula include Language::Python::Virtualenv desc "Fast cso compressor" From 01f7cdf89559a2ef8dd868659ca60cd99b25cadc Mon Sep 17 00:00:00 2001 From: Samantha <19739806+UltimateNova1203@users.noreply.github.com> Date: Sun, 30 Jun 2024 16:15:07 -0400 Subject: [PATCH 4/4] Update maxcso.rb --- Formula/m/maxcso.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Formula/m/maxcso.rb b/Formula/m/maxcso.rb index 8336629f..4a1f1024 100644 --- a/Formula/m/maxcso.rb +++ b/Formula/m/maxcso.rb @@ -1,5 +1,4 @@ class Maxcso < Formula - include Language::Python::Virtualenv desc "Fast cso compressor" homepage "https://github.com/unknownbrackets/maxcso"