24 lines
792 B
Ruby
24 lines
792 B
Ruby
class Sd < Formula
|
|
desc "Intuitive find & replace CLI"
|
|
homepage "https://github.com/chmln/sd"
|
|
url "https://github.com/chmln/sd/archive/0.6.5.tar.gz"
|
|
sha256 "ed38e5103080373b00443f72683ac2785b18e354ab6ef4797e27af028be9baf2"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
rebuild 1
|
|
sha256 "bdd3186fb20a398f02a3d2b9dee49e7f60f91e9566cddfc81be0ba4ce72fff2a" => :catalina
|
|
sha256 "29f6491b5f39d63482793ac52f703ed037c8f0759c9d18c5585ebdf3cab711bd" => :mojave
|
|
sha256 "0beab832bb7d2570a61d7c01033de8d47c3543e98d1b3fe20dead77ef5f28f7d" => :high_sierra
|
|
end
|
|
|
|
depends_on "rust" => :build
|
|
|
|
def install
|
|
system "cargo", "install", "--locked", "--root", prefix, "--path", "."
|
|
end
|
|
|
|
test do
|
|
assert_equal "after", pipe_output("#{bin}/sd before after", "before")
|
|
end
|
|
end
|