86 lines
2.8 KiB
Ruby
86 lines
2.8 KiB
Ruby
class Upscaledb < Formula
|
|
desc "Database for embedded devices"
|
|
homepage "https://upscaledb.com/"
|
|
revision 14
|
|
|
|
stable do
|
|
url "http://files.upscaledb.com/dl/upscaledb-2.2.0.tar.gz"
|
|
mirror "https://dl.bintray.com/homebrew/mirror/upscaledb-2.2.0.tar.gz"
|
|
sha256 "7d0d1ace47847a0f95a9138637fcaaf78b897ef682053e405e2c0865ecfd253e"
|
|
|
|
# Remove for > 2.2.2
|
|
# Upstream commit from 12 Feb 2018 "Fix compilation with Boost 1.66 (#110)"
|
|
patch do
|
|
url "https://github.com/cruppstahl/upscaledb/commit/01156f9a8.patch?full_index=1"
|
|
sha256 "e65b9f2b624b7cdad00c3c1444721cadd615688556d8f0bb389d15f5f5f4f430"
|
|
end
|
|
end
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "16803511bcf21348ddd6c71d76367fef5961188d2b0f467a3ec05b044db5b3f7" => :catalina
|
|
sha256 "b07269e80731ac5700a84b05f1725a49d59e40191bbab4661750b204f14ba9b3" => :mojave
|
|
sha256 "003ac2a786a136acf66f8de4a25a0d72950c21dbb4e4b70afad486bba01319d7" => :high_sierra
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/cruppstahl/upscaledb.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
depends_on "boost"
|
|
depends_on "gnutls"
|
|
depends_on "openjdk"
|
|
depends_on "openssl@1.1"
|
|
depends_on "protobuf"
|
|
|
|
resource "libuv" do
|
|
url "https://github.com/libuv/libuv/archive/v0.10.37.tar.gz"
|
|
sha256 "4c12bed4936dc16a20117adfc5bc18889fa73be8b6b083993862628469a1e931"
|
|
end
|
|
|
|
# Patch for compatibility with OpenSSL 1.1
|
|
# https://github.com/cruppstahl/upscaledb/issues/124
|
|
patch do
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/a7095c61/upscaledb/openssl-1.1.diff"
|
|
sha256 "c388613c88e856ee64be2b4a72b64a1b998f1f8b835122579e2049e9f01a0f58"
|
|
end
|
|
|
|
def install
|
|
# Fix collision with isset() in <sys/params.h>
|
|
# See https://github.com/Homebrew/homebrew-core/pull/4145
|
|
inreplace "./src/5upscaledb/upscaledb.cc",
|
|
"# include \"2protobuf/protocol.h\"",
|
|
"# include \"2protobuf/protocol.h\"\n#define isset(f, b) (((f) & (b)) == (b))"
|
|
|
|
system "./bootstrap.sh" if build.head?
|
|
|
|
resource("libuv").stage do
|
|
system "make", "libuv.dylib", "SO_LDFLAGS=-Wl,-install_name,#{libexec}/libuv/lib/libuv.dylib"
|
|
(libexec/"libuv/lib").install "libuv.dylib"
|
|
(libexec/"libuv").install "include"
|
|
end
|
|
|
|
ENV.prepend "LDFLAGS", "-L#{libexec}/libuv/lib"
|
|
ENV.prepend "CFLAGS", "-I#{libexec}/libuv/include"
|
|
ENV.prepend "CPPFLAGS", "-I#{libexec}/libuv/include"
|
|
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"JDK=#{Formula["openjdk"].opt_prefix}"
|
|
system "make", "install"
|
|
|
|
pkgshare.install "samples"
|
|
end
|
|
|
|
test do
|
|
system ENV.cc, "-I#{include}", "-L#{lib}", "-lupscaledb",
|
|
pkgshare/"samples/db1.c", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|