mksh 0.40c

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Decklin Foster 2011-11-28 12:40:42 -05:00 committed by Adam Vandenberg
parent 263a3a736e
commit 295741de3a

23
Formula/mksh.rb Normal file
View file

@ -0,0 +1,23 @@
require 'formula'
class Mksh < Formula
url 'https://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R40c.cpio.gz'
homepage 'https://www.mirbsd.org/mksh.htm'
md5 '43a79f721091833bdab3d00fbfe54a14'
version '0.40c'
def install
system 'sh ./Build.sh -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