89 lines
2.6 KiB
Ruby
89 lines
2.6 KiB
Ruby
class Upscaledb < Formula
|
|
desc "Database for embedded devices"
|
|
homepage "https://upscaledb.com/"
|
|
url "http://files.upscaledb.com/dl/upscaledb-2.2.0.tar.gz"
|
|
sha256 "7d0d1ace47847a0f95a9138637fcaaf78b897ef682053e405e2c0865ecfd253e"
|
|
revision 4
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "72bff8f4ed0ab971455323df110b4c943f2df81f949786d35e45fa000a7f0af8" => :sierra
|
|
sha256 "06f4e20e40bb56130ff85e5939b0344d0673b09d955402cde39a98070cee82bc" => :el_capitan
|
|
sha256 "2e48d0b0bb6c9802a511c35abd1a7c0fb0782d73c554bc4ee2104a8b431ccf84" => :yosemite
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/cruppstahl/upscaledb.git"
|
|
|
|
depends_on "automake" => :build
|
|
depends_on "autoconf" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
option "without-java", "Do not build the Java wrapper"
|
|
option "without-protobuf", "Disable access to remote databases"
|
|
|
|
deprecated_option "without-remote" => "without-protobuf"
|
|
|
|
depends_on "boost"
|
|
depends_on "gnutls"
|
|
depends_on "openssl"
|
|
depends_on :java => :recommended
|
|
depends_on "protobuf" => :recommended
|
|
|
|
resource "libuv" do
|
|
url "https://github.com/libuv/libuv/archive/v0.10.37.tar.gz"
|
|
sha256 "4c12bed4936dc16a20117adfc5bc18889fa73be8b6b083993862628469a1e931"
|
|
end
|
|
|
|
fails_with :clang do
|
|
build 503
|
|
cause "error: member access into incomplete type 'const std::type_info"
|
|
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?
|
|
|
|
args = %W[
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
]
|
|
|
|
if build.with? "java"
|
|
args << "JDK=#{ENV["JAVA_HOME"]}"
|
|
else
|
|
args << "--disable-java"
|
|
end
|
|
|
|
if build.with? "protobuf"
|
|
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"
|
|
else
|
|
args << "--disable-remote"
|
|
end
|
|
|
|
system "./configure", *args
|
|
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
|