blob: cf1f506309623ceefc97f2a3746ef6843d904d35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
require 'formula'
class Funcoeszz < Formula
  homepage 'http://funcoeszz.googlecode.com/'
  url 'http://funcoeszz.googlecode.com/files/funcoeszz-10.12.sh'
  sha1 'd9b8f5b131b844aee9ad429943472efe477cab5a'
  def install
    prefix.install "funcoeszz-10.12.sh"
  end
  def caveats; <<-EOS.undent
    To use this software add to your profile:
      source #{opt_prefix}/funcoeszz-10.12.sh
    EOS
  end
end
  |