homebrew-core/Formula/mksh.rb

30 lines
708 B
Ruby

require 'formula'
class CpioDownloadStrategy < CurlDownloadStrategy
def stage
system "gzcat #{@tarball_path} | cpio -id"
chdir
end
end
class Mksh < Formula
homepage 'https://www.mirbsd.org/mksh.htm'
url 'https://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R40d.cpio.gz',
:using => CpioDownloadStrategy
version '0.40d'
md5 'c6428401103367730a95b99284bf47dc'
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