frink version HEAD for OS X
The formula for frink was recently updated to version HEAD.
To install frink on your Mac, open your Terminal application and run the following commands;
brew update brew install frink
The updated formula is as follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
require 'formula' class Frink < Formula head 'http://futureboy.us/frinkjar/frink.jar' homepage 'http://futureboy.us/frinkdocs/index.html' md5 'a7db7977a520ea2b54d1166ff0738efc' depends_on 'rlwrap' def install prefix.install 'frink.jar' # Add an executable shell-script (bin + "frink").write <<-EOF.undent #!/bin/sh rlwrap java -cp #{prefix}/frink.jar frink.parser.Frink \"$@\" EOF end end
This package, frink, depends on;
rlwrap
See which packages depend on frink.

















