blob: 28d014ff14ce5d4af315959a2282e1ac83894c97 (
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
|
require 'formula'
class Datomic < Formula
homepage 'http://www.datomic.com/'
url 'https://my.datomic.com/downloads/free/0.9.4956'
sha256 'f7ed9371818cc8911e0bf690e74f1f4f3e5f5a84b2557514dd6047f405eae068'
version '0.9.4956'
def write_libexec_alias *script_names
script_names.each do |script_name|
alias_name = script_name == 'datomic' ? 'datomic' : "datomic-#{script_name}"
(bin + alias_name).write <<-EOS.undent
#!/bin/bash
cd #{libexec} && exec "bin/#{script_name}" "$@"
EOS
end
end
def install
libexec.install Dir['*']
write_libexec_alias 'datomic', 'transactor', 'repl', 'repl-jline', 'rest', 'shell'
end
def caveats
<<-EOS.undent
You may need to set JAVA_HOME:
export JAVA_HOME="$(/usr/libexec/java_home)"
All commands have been installed with the prefix 'datomic-'.
We agreed to the Datomic Free Edition License for you:
http://www.datomic.com/datomic-free-edition-license.html
If this is unacceptable you should uninstall.
EOS
end
end
|