blob: 840999584c1a9c5f9d0f1f836d8cba571b4f246e (
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.net/'
url 'http://funcoeszz.net/download/funcoeszz-13.2.sh'
sha1 '33d6950dc83fd2118bc45a752c4a77be3b112573'
def install
prefix.install "funcoeszz-#{version}.sh"
end
def caveats; <<-EOS.undent
To use this software add to your profile:
source #{opt_prefix}/funcoeszz-#{version}.sh
EOS
end
end
|