homebrew-core/Formula/sqldiff.rb

30 lines
1.1 KiB
Ruby
Raw Normal View History

2016-09-26 08:57:59 +00:00
class Sqldiff < Formula
desc "Displays the differences between SQLite databases"
2016-09-26 08:57:59 +00:00
homepage "https://www.sqlite.org/sqldiff.html"
url "https://www.sqlite.org/2016/sqlite-src-3150200.zip"
version "3.15.2"
sha256 "38a1e867b5b1a58ba3731a63ffe69a2271d79bd0723d21c5a9a71e4cb7452a83"
2016-09-26 08:57:59 +00:00
2016-10-03 19:44:42 +00:00
bottle do
cellar :any_skip_relocation
2016-11-29 07:05:03 +00:00
sha256 "cd5171c6f413b48217c8ff48f6aec6ca91530ebfa262d1435b34775b00102f5e" => :sierra
sha256 "83ac51e8de1a8194ac97919a33802a80a17b503187a4be6aeab4b06484c7d957" => :el_capitan
sha256 "e1e71a7f621a05e5be7fc18b0f8b794a4fc7af3d37750c281d5b3027ddfb76de" => :yosemite
2016-10-03 19:44:42 +00:00
end
2016-09-26 08:57:59 +00:00
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}"
system "make", "sqldiff"
bin.install "sqldiff"
end
test do
dbpath = testpath/"test.sqlite"
sqlpath = testpath/"test.sql"
sqlpath.write "create table test (name text);"
system "/usr/bin/sqlite3 #{dbpath} < #{sqlpath}"
assert_equal "test: 0 changes, 0 inserts, 0 deletes, 0 unchanged",
shell_output("#{bin}/sqldiff --summary #{dbpath} #{dbpath}").strip
2016-09-26 08:57:59 +00:00
end
end