blob: e0b2b35990f7b9b22d8f1a9c48daeea78593d2eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
  | 
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.7.tar.gz"
  sha1 "4ce5a0004e7f1fee28fcec0ee9c5478be5aad25c"
  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
  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
  |