Created
August 2, 2024 10:19
-
-
Save salmanfarisvp/7179ab67fa3f0f7ede4333176f5aa84e to your computer and use it in GitHub Desktop.
Screenly CLI Formule
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ScreenlyCli < Formula | |
desc "Command line interface is intended for quick interaction with Screenly through terminal." | |
homepage "https://github.com/Screenly/cli" | |
url "https://github.com/Screenly/cli.git", | |
tag: "v0.2.7" | |
version "v0.2.7" | |
license "MIT" | |
depends_on "rust" => :build | |
def install | |
system "cargo", "install", "--bin", "screenly", *std_cargo_args | |
end | |
test do | |
system "true" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment