Files
homebrew-docki/Formula/docki.rb

38 lines
1.3 KiB
Ruby

# Documentation: https://docs.brew.sh/Formula-Cookbook
# https://rubydoc.brew.sh/Formula
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST!
class Docki < Formula
desc ""
homepage ""
url "https://github.com/quirinecker/docki.git", branch: "main"
version "1.0"
sha256 ""
license ""
head "https://github.com/quirinecker/docki.git", branch: "main"
depends_on "rust" => :build
depends_on "pkg-config" => :build
depends_on "openssl@3" => :build
depends_on "asciidoctor"
def install
# ENV.deparallelize # if your formula fails when building in parallel
system "cargo", "install", *std_cargo_args
system "cargo", "build", "--release", "--bin", "docki"
bin.install "target/release/docki"
end
test do
# `test do` will create, run in and delete a temporary directory.
#
# This test will fail and we won't accept that! For Homebrew/homebrew-core
# this will need to be a test that verifies the functionality of the
# software. Run the test with `brew test docki`. Options passed
# to `brew install` such as `--HEAD` also need to be provided to `brew test`.
#
# The installed folder is not in the path, so use the entire path to any
# executables being tested: `system "#{bin}/program", "do", "something"`.
system "false"
end
end