aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJustin Clift2014-05-30 18:50:26 +0100
committerMisty De Meo2014-05-30 21:45:33 -0700
commit4fec8d2f27bfc4ecd938c6d1f3229a71ea5487fe (patch)
tree279803483564d106151b9e7037e04d2581c1d588 /Library
parentc9a1bf3e268bf21b0b72532427b071d9b7478969 (diff)
downloadhomebrew-4fec8d2f27bfc4ecd938c6d1f3229a71ea5487fe.tar.bz2
sqlitebrowser 3.1
Closes #29669. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/sqlitebrowser.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/sqlitebrowser.rb b/Library/Formula/sqlitebrowser.rb
new file mode 100644
index 000000000..eefa29228
--- /dev/null
+++ b/Library/Formula/sqlitebrowser.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class Sqlitebrowser < Formula
+ homepage 'http://sqlitebrowser.org'
+ url 'https://github.com/sqlitebrowser/sqlitebrowser/archive/sqlb-3.1.0.tar.gz'
+ sha256 '06ba56016c1f39935d8e121304e27d4d55b0bc74181e4b20155c11aa8c183aae'
+
+ head 'https://github.com/sqlitebrowser/sqlitebrowser.git'
+
+ depends_on 'qt'
+ depends_on 'cmake' => :build
+ depends_on 'sqlite' => '--with-functions'
+
+ def install
+ system "cmake", ".", *std_cmake_args
+ system 'make install'
+ end
+end