blob: a49033477be78a7f14862488475eef7431ae3786 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Mksh < Formula
homepage 'https://mirbsd.org/mksh.htm'
url 'http://mirbsd.org/MirOS/dist/mir/mksh/mksh-R49.tgz'
sha1 '06b9d0162d1f91ff28d3fa66533e67edb168694d'
def install
system "sh", "./Build.sh", "-r", "-c", (ENV.compiler == :clang ? "lto" : "combine")
bin.install 'mksh'
man1.install 'mksh.1'
end
def caveats; <<-EOS.undent
To allow using mksh as a login shell, run this as root:
echo #{HOMEBREW_PREFIX}/bin/mksh >> /etc/shells
Then, any user may run `chsh` to change their shell.
EOS
end
end
|