blob: 7318ab6ba8ccfd6a509addf25aeebcc01493e302 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  | 
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
  |