blob: dc01691dcfdaeef8cc50ac67b4f674c296db36f5 (
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
|
require 'formula'
class Ioke < Formula
homepage 'http://ioke.org/'
url 'http://ioke.org/dist/ioke-P-ikj-0.4.0.tar.gz'
sha1 '1cf1512e1a845b64c8f839fed396f279afdc0ed9'
def install
# Remove windows files
rm_f Dir["bin/*.bat"]
prefix.install_metafiles
# Install jars in libexec to avoid conflicts
libexec.install Dir['*']
# Point IOKE_HOME to libexec
inreplace libexec/'bin/ioke' do |s|
s.change_make_var! 'IOKE_HOME', libexec
end
bin.install_symlink libexec/'bin/ioke',
libexec/'bin/ispec',
libexec/'bin/dokgen'
end
end
|