38 lines
989 B
Ruby
38 lines
989 B
Ruby
class Funcoeszz < Formula
|
|
desc "Dozens of command-line mini-applications (Portuguese)"
|
|
homepage "https://funcoeszz.net/"
|
|
url "https://funcoeszz.net/download/funcoeszz-21.1.sh"
|
|
sha256 "630017119208b576387e18db8734dbda9d9e7750c742f9c3ffec7232b7636856"
|
|
license "GPL-2.0-only"
|
|
|
|
livecheck do
|
|
url "https://funcoeszz.net/download/"
|
|
regex(/href=.*?funcoeszz[._-]v?(\d+(?:\.\d+)+)\.sh/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "f2c2872df39cc30fc4cf4c277a2b37d299d27eb038d079584e4774cf146476ee"
|
|
end
|
|
|
|
depends_on "bash"
|
|
uses_from_macos "bc" => :test
|
|
|
|
def install
|
|
bin.install "funcoeszz-#{version}.sh" => "funcoeszz"
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
To use this software add to your profile:
|
|
export ZZPATH="#{opt_bin}/funcoeszz"
|
|
source "$ZZPATH"
|
|
|
|
Usage of a newer Bash than the macOS default is required.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
assert_equal "15", shell_output("#{bin}/funcoeszz zzcalcula 10+5").chomp
|
|
end
|
|
end
|