4746ecf223
Closes Homebrew/homebrew#29203. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
17 lines
404 B
Ruby
17 lines
404 B
Ruby
require 'formula'
|
|
|
|
class Funcoeszz < Formula
|
|
homepage 'http://funcoeszz.net/'
|
|
url 'http://funcoeszz.net/download/funcoeszz-13.2.sh'
|
|
sha1 '33d6950dc83fd2118bc45a752c4a77be3b112573'
|
|
|
|
def install
|
|
prefix.install "funcoeszz-#{version}.sh" => "funcoeszz.sh"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
To use this software add to your profile:
|
|
source #{opt_prefix}/funcoeszz.sh
|
|
EOS
|
|
end
|
|
end
|