955b6bda93
Closes Homebrew/homebrew#33722. Signed-off-by: Tim D. Smith <git@tim-smith.us>
25 lines
695 B
Ruby
25 lines
695 B
Ruby
require 'formula'
|
|
|
|
class Sqlitebrowser < Formula
|
|
homepage 'http://sqlitebrowser.org'
|
|
url 'https://github.com/sqlitebrowser/sqlitebrowser/archive/v3.4.0.tar.gz'
|
|
sha1 'c60e953639ce8294155fa819a4538b05f8d58b64'
|
|
|
|
head 'https://github.com/sqlitebrowser/sqlitebrowser.git'
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "b87cee7ab96ddd8892c3e4007f802ca5bf6f7045" => :yosemite
|
|
sha1 "3ae7a4752bc3c0ba487d1096f47da72876655c7c" => :mavericks
|
|
sha1 "b633087ab28885f058bc5bcf24ca834828d1c894" => :mountain_lion
|
|
end
|
|
|
|
depends_on 'qt'
|
|
depends_on 'cmake' => :build
|
|
depends_on 'sqlite' => 'with-functions'
|
|
|
|
def install
|
|
system "cmake", ".", *std_cmake_args
|
|
system 'make install'
|
|
end
|
|
end
|