From 91ad4a1d3a623a35413162620ff7c5f639efd016 Mon Sep 17 00:00:00 2001 From: winston Date: Sat, 4 Nov 2023 19:32:22 +0100 Subject: [PATCH] chore: add whiskers Closes #8. Signed-off-by: winston <79978224+nekowinston@users.noreply.github.com> --- Formula/whiskers.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Formula/whiskers.rb diff --git a/Formula/whiskers.rb b/Formula/whiskers.rb new file mode 100644 index 0000000..30c89f5 --- /dev/null +++ b/Formula/whiskers.rb @@ -0,0 +1,18 @@ +class Whiskers < Formula + desc "Soothing port creation tool for the high-spirited!" + homepage "https://github.com/catppuccin/toolbox/tree/main/whiskers" + url "https://github.com/catppuccin/toolbox/archive/refs/tags/whiskers-v1.1.1.tar.gz" + sha256 "baae7de466b48a808f25ef87f7dc94765c67ddda656d4b2813a19012580b00af" + license "MIT" + head "https://github.com/catppuccin/toolbox.git", branch: "main" + + depends_on "rust" => :build + + def install + system "cargo", "install", *std_cargo_args(path: "whiskers") + end + + test do + assert_predicate (bin/"whiskers"), :exist? + end +end