29 lines
1 KiB
Ruby
29 lines
1 KiB
Ruby
class Posh < Formula
|
|
desc "Policy-compliant ordinary shell"
|
|
homepage "https://salsa.debian.org/clint/posh"
|
|
url "https://salsa.debian.org/clint/posh/repository/debian/0.13.1/archive.tar.gz"
|
|
sha256 "c2c10db047294309a109f09e0c76a0cdc33af39563c847b84149b9ac5210f115"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "548e5330c43d793d53a5367a20c8538659c2b01ec89e1e38adb77af84220f56d" => :high_sierra
|
|
sha256 "b3c765a3f11f264415f1438db4c20e77c4202e8a894d67be5ab60ce2bbfb30a1" => :sierra
|
|
sha256 "d8018f086dea30a4225641c56255dff05a45d5eea16707822c1e13364b44ecbc" => :el_capitan
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
|
|
def install
|
|
system "autoreconf", "-fiv"
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
output = shell_output("#{bin}/posh -c 'echo homebrew'")
|
|
assert_equal "homebrew", output.chomp
|
|
end
|
|
end
|