From d72246be0853299f555e7a556db50c4f8a5ba9ae Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 29 May 2019 10:23:15 -0400 Subject: [PATCH] monetdb 11.33.3 Closes #40459. Signed-off-by: FX Coudert --- Formula/monetdb.rb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Formula/monetdb.rb b/Formula/monetdb.rb index 37e22dbe02..ab7c7c97a3 100644 --- a/Formula/monetdb.rb +++ b/Formula/monetdb.rb @@ -1,8 +1,8 @@ class Monetdb < Formula desc "Column-store database" homepage "https://www.monetdb.org/" - url "https://www.monetdb.org/downloads/sources/Aug2018-SP2/MonetDB-11.31.13.tar.xz" - sha256 "f9fbf63ed7e6c306868b289c3fda8c3a8b6d3fc6bef589418940b2a21fd7c283" + url "https://www.monetdb.org/downloads/sources/Apr2019/MonetDB-11.33.3.tar.xz" + sha256 "f69e7312a77407bef2d970e6d8edfc0ca687d5b31c6b4714bd9132fa468a12e9" bottle do sha256 "c289a7faa889c3adf228d183a5310ef7187d679f93fde340d263f4ce3fb835d6" => :mojave @@ -36,6 +36,11 @@ class Monetdb < Formula "--enable-testing=no", "--with-readline=#{Formula["readline"].opt_prefix}", "--disable-rintegration" + system "make" system "make", "install" end + + test do + assert_match "Usage", shell_output("#{bin}/mclient --help 2>&1") + end end