2011-05-14 11:56:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Vf < Formula
|
|
|
|
homepage 'https://github.com/glejeune/vf'
|
2013-03-29 20:29:20 +00:00
|
|
|
url 'https://github.com/glejeune/vf/archive/0.0.1.tar.gz'
|
|
|
|
sha1 '288086b41857c292207f0dc1c69e0f4435e0195b'
|
2011-05-14 11:56:46 +00:00
|
|
|
|
|
|
|
head 'https://github.com/glejeune/vf.git'
|
|
|
|
|
|
|
|
def install
|
|
|
|
# Since the shell file is sourced instead of run
|
|
|
|
# install to prefix instead of bin
|
|
|
|
prefix.install Dir['*']
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
To complete installation, add the following line to your shell's rc file:
|
|
|
|
source #{prefix}/vf.sh
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|