ArgentumCation / mirafetch

European Union Public License 1.2
7 stars 5 forks source link

Homebrew Formula #30

Open osalbahr opened 1 month ago

osalbahr commented 1 month ago

I plan on creating a Homebrew Formula for mirafetch

Please assign this issue to me

osalbahr commented 1 month ago

This should be a minimum viable formula:

class Mirafetch < Formula
  desc "No description, website, or topics provided"
  homepage "https://github.com/ArgentumCation/mirafetch"
  license "EUPL-1.2"
  head "https://github.com/ArgentumCation/mirafetch"

  depends_on "rust" => :build

  def install
    system "cargo", "install", *std_cargo_args
  end

  test do
    system bin/"mirafetch"
  end
end