2014-05-30 17:50:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Sqlitebrowser < Formula
|
|
|
|
homepage 'http://sqlitebrowser.org'
|
2014-07-07 11:11:10 +00:00
|
|
|
url 'https://github.com/sqlitebrowser/sqlitebrowser/archive/sqlb-3.2.0.tar.gz'
|
|
|
|
sha256 '2eabb4c0102cb2fabd6bd556ffc40c247a8b317adf518d0601b5ee885ac86e1b'
|
2014-05-30 17:50:26 +00:00
|
|
|
|
|
|
|
head 'https://github.com/sqlitebrowser/sqlitebrowser.git'
|
|
|
|
|
|
|
|
depends_on 'qt'
|
|
|
|
depends_on 'cmake' => :build
|
2014-07-07 14:07:58 +00:00
|
|
|
depends_on 'sqlite' => 'with-functions'
|
2014-05-30 17:50:26 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "cmake", ".", *std_cmake_args
|
|
|
|
system 'make install'
|
|
|
|
end
|
|
|
|
end
|