2011-08-20 11:29:41 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Liquibase < Formula
|
|
|
|
homepage 'http://liquibase.org'
|
2012-08-05 14:42:31 +00:00
|
|
|
url 'https://github.com/downloads/liquibase/liquibase/liquibase-2.0.5-bin.tar.gz'
|
|
|
|
sha1 'eb237c4b9b8c85aff5ddac6272f6291ae593c7a4'
|
2011-08-20 11:29:41 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
rm_f Dir['*.bat']
|
|
|
|
|
|
|
|
chmod 0755, Dir['liquibase']
|
|
|
|
|
2012-11-11 19:20:09 +00:00
|
|
|
prefix.install_metafiles
|
2011-08-20 11:29:41 +00:00
|
|
|
libexec.install Dir['*']
|
2012-02-13 01:15:53 +00:00
|
|
|
bin.install_symlink libexec+'liquibase'
|
2011-08-20 11:29:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats
|
|
|
|
<<-EOS.undent
|
|
|
|
You should set the environment variable LIQUIBASE_HOME to
|
|
|
|
#{libexec}
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|