82 lines
1.9 KiB
Ruby
82 lines
1.9 KiB
Ruby
require 'formula'
|
|
|
|
class JavaRequirement < Requirement
|
|
fatal true
|
|
|
|
def self.jdk_home
|
|
[
|
|
`/usr/libexec/java_home`.chomp,
|
|
ENV['JAVA_HOME']
|
|
].find { |dir| dir && File.exist?("#{dir}/bin/javac") && File.exist?("#{dir}/include") }
|
|
end
|
|
|
|
satisfy :build_env => false do
|
|
self.class.jdk_home
|
|
end
|
|
|
|
def message; <<-EOS.undent
|
|
Could not find a JDK (i.e. not a JRE)
|
|
|
|
Do one of the following:
|
|
- install a JDK that is detected with /usr/libexec/java_home
|
|
- set the JAVA_HOME environment variable
|
|
- specify --without-java
|
|
EOS
|
|
end
|
|
end
|
|
|
|
class Hamsterdb < Formula
|
|
homepage 'http://hamsterdb.com'
|
|
url "http://files.hamsterdb.com/dl/hamsterdb-2.1.8.tar.gz"
|
|
sha1 "f91af65d19cdbd75ec52f6d18e331e22e4f198a7"
|
|
revision 1
|
|
|
|
option 'without-java', 'Do not build the Java wrapper'
|
|
option 'without-remote', 'Disable access to remote databases'
|
|
|
|
head do
|
|
url 'https://github.com/cruppstahl/hamsterdb.git', :branch => 'topic/next'
|
|
|
|
depends_on 'autoconf' => :build
|
|
depends_on 'automake' => :build
|
|
depends_on 'libtool' => :build
|
|
end
|
|
|
|
stable do
|
|
patch do
|
|
url "https://github.com/cruppstahl/hamsterdb/commit/6eed38f26a0805fe976ead92b467767e1448b124.diff"
|
|
sha1 "13928ceca137eb1cf680d3d25d18819c44dc743e"
|
|
end
|
|
end
|
|
|
|
depends_on 'boost'
|
|
depends_on 'gnutls'
|
|
depends_on JavaRequirement if build.with? 'java'
|
|
|
|
if build.with? 'remote'
|
|
depends_on 'protobuf'
|
|
depends_on 'libuv'
|
|
end
|
|
|
|
def install
|
|
system '/bin/sh', 'bootstrap.sh' if build.head?
|
|
|
|
features = []
|
|
features << '--disable-remote' if build.without? 'remote'
|
|
|
|
if build.with? 'java'
|
|
features << "JDK=#{JavaRequirement.jdk_home}"
|
|
else
|
|
features << '--disable-java'
|
|
end
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
*features
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/ham_info -h"
|
|
end
|
|
end
|