2011-11-28 17:40:42 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Mksh < Formula
|
2013-02-22 21:46:36 +00:00
|
|
|
homepage 'https://mirbsd.org/mksh.htm'
|
2013-08-14 21:51:19 +00:00
|
|
|
url 'https://mirbsd.org/MirOS/dist/mir/mksh/mksh-R48.tgz'
|
|
|
|
version '48.1'
|
|
|
|
sha256 '56f6578073a669e33ced5364e0939ed6ccdb32db054489d4070afbefa36d2c73'
|
2011-11-28 17:40:42 +00:00
|
|
|
|
|
|
|
def install
|
2013-07-25 12:17:25 +00:00
|
|
|
system "sh", "./Build.sh", "-r", "-c", (ENV.compiler == :clang ? "lto" : "combine")
|
2011-11-28 17:40:42 +00:00
|
|
|
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
|
2012-03-21 16:16:04 +00:00
|
|
|
Then, any user may run `chsh` to change their shell.
|
2011-11-28 17:40:42 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|