homebrew-core/Formula/fsql.rb
2019-08-15 18:36:17 +08:00

33 lines
1.3 KiB
Ruby

class Fsql < Formula
desc "Search through your filesystem with SQL-esque queries"
homepage "https://github.com/kashav/fsql"
url "https://github.com/kashav/fsql/archive/v0.3.1.tar.gz"
sha256 "b88110426a60aa2c48f7b4e52e117a899d43d1bba2614346b729234cd4bd9184"
bottle do
cellar :any_skip_relocation
rebuild 1
sha256 "7cb63d8939e7af0391938aea8a138daccbaddce50b42802d32e510772e004b9a" => :mojave
sha256 "7b4353a346425e4db5d14419c4dbacf6038606778a7ce2b98ddd0fdb7c2ca233" => :high_sierra
sha256 "f651c7c2dad44ee6b6f32aa699df223bd427421990f2c2c170d0928b1a31ef87" => :sierra
end
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
(buildpath/"src/github.com/kshvmdn/fsql").install buildpath.children
system "go", "build", "-o", bin/"fsql", "github.com/kshvmdn/fsql/cmd/fsql"
end
test do
(testpath/"bar.txt").write("hello")
(testpath/"foo/baz.txt").write("world")
cmd = "#{bin}/fsql SELECT FULLPATH\\(name\\) FROM foo"
assert_match %r{^foo\s+foo/baz.txt$}, shell_output(cmd)
cmd = "#{bin}/fsql SELECT name FROM . WHERE name = bar.txt"
assert_equal "bar.txt", shell_output(cmd).chomp
cmd = "#{bin}/fsql SELECT name FROM . WHERE FORMAT\\(size\, GB\\) \\> 500"
assert_equal "", shell_output(cmd)
end
end